Advertisements
Advertisements
Question
List out Looping Structure in PHP.
Short Note
Solution
- for Loop
- foreach Loop
- While Loop
- Do While Loop
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 ______.
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
Define for loop in PHP.
Write the purpose of Looping Structure in PHP.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain working of loops in array.