Advertisements
Advertisements
प्रश्न
Write Syntax of while loop in PHP.
टिप्पणी लिखिए
उत्तर
while (condition is true)
{
code to be executed;
}
shaalaa.com
Looping Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
The loop exclusively used for arrays is _____.
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”;
}
?>
Write Syntax of For each loop in PHP.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Write the purpose of Looping Structure in PHP.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain concepts of for loop with example.