Advertisements
Advertisements
प्रश्न
Write Syntax of For loop in PHP.
टिप्पणी लिखिए
उत्तर
for (init counter; test counter; increment counter)
{
code to be executed;
}
shaalaa.com
Looping Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
Loops that iterate for fixed number of times is called ______.
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Discuss in detail about Foreach loop.
Explain the process Do while loop.