Advertisements
Advertisements
Question
Write the purpose of Looping Structure in PHP.
Short Note
Solution
- In programming it is often necessary to repeat the same block of code a given number of times, or until a certain condition is met.
- This can be accomplished using looping statements.
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
Define for loop in PHP.
Write Syntax of For each loop in PHP.
Compare for loop and for each loop.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain the process Do while loop.
Explain concepts of for loop with example.