Advertisements
Advertisements
Question
Write Syntax of For loop in PHP.
Short/Brief Note
Advertisements
Solution
for (init counter; test counter; increment counter)
{
code to be executed;
}shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Loops that iterate for fixed number of times is called ______.
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
Define Looping Structure in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Explain the use of for each loop in PHP.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.
