Advertisements
Advertisements
प्रश्न
Write the purpose of Looping Structure in PHP.
टिप्पणी लिखिए
उत्तर
- 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
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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”;
}
?>
PHP supports which types of looping techniques ______.
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
Define Looping Structure in PHP.
Define for loop in PHP.
List out Looping Structure in PHP.
Write Syntax of Do while loop in PHP.
Write the features Looping Structure.
Write short notes on Do while Loop.
Discuss in detail about Foreach loop.