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 the features Looping Structure.
Differentiate For each and While loop.
Write short notes on Do while Loop.
Explain the process Do while loop.
Explain concepts of for loop with example.
Explain working of loops in array.
