Advertisements
Advertisements
प्रश्न
Write Syntax of Do while loop in PHP.
टिप्पणी लिखिए
उत्तर
do
{
code to be executed;
} while (condition is true);
shaalaa.com
Looping Structure
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
Loops that iterate for fixed number of times is called ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
What is For each loop in PHP?
List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Explain Looping Structure in PHP.
Explain concepts of for loop with example.
Explain working of loops in array.