Advertisements
Advertisements
प्रश्न
Write Syntax of For loop in PHP.
टिप्पणी लिखिए
Advertisements
उत्तर
for (init counter; test counter; increment counter)
{
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?
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 “*\t”;
}
?>Define Looping Structure in PHP.
Define for loop in PHP.
List out Looping Structure in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of Do while loop in PHP.
Write short notes on Do while Loop.
Explain concepts of for loop with example.
