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
What will be displayed in a browser when the following PHP code is executed;
<?php
for ($counter = 10; $counter < 10;
$counter = $counter + 5){
echo “Hello”;
}
?>Define Looping Structure in PHP.
List out Looping Structure in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Write the features Looping Structure.
Write the purpose of Looping Structure in PHP.
Differentiate For each and While loop.
Differentiate While and Do while loops.
Discuss in detail about Foreach loop.
