Advertisements
Advertisements
Question
Write Syntax of Do while loop in PHP.
Short/Brief Note
Advertisements
Solution
do
{
code to be executed;
} while (condition is true);
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
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 “*\t”;
}
?>What is For each loop in PHP?
Write Syntax of For loop in PHP.
Explain the use of for each loop in PHP.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.
Explain the process Do while loop.
