Advertisements
Advertisements
Question
Write the purpose of Looping Structure in PHP.
Short/Brief Note
Advertisements
Solution
- In programming it is often necessary to repeat the same block of code a given number of times, or until a certain condition is met.
- This can be accomplished using looping statements.
shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The loop exclusively used for arrays is _____.
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Explain the use of for each loop in PHP.
Differentiate For each and While loop.
Explain the process Do while loop.
Explain concepts of for loop with example.
