Advertisements
Advertisements
Question
PHP supports which types of looping techniques ______.
Options
for loop
while loop
foreach loop
all the above
MCQ
Fill in the Blanks
Advertisements
Solution
All the above
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
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;
}
?>List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of Do while loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Write the purpose of Looping Structure in PHP.
Write short notes on Do while Loop.
Explain working of loops in array.
