Advertisements
Advertisements
प्रश्न
Write Syntax of For each loop in PHP.
टीपा लिहा
उत्तर
for each ($array as $value)
{
code to be executed;
}
shaalaa.com
Looping Structure
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
What will be displayed in a browser when the following PHP code is executed:
<?php
for (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>
Define Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of while loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Write the features Looping Structure.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.