Advertisements
Advertisements
Question
Define for loop in PHP.
Definition
Advertisements
Solution
For loop is an important functional looping system which is used for iteration logics when the programmer know in advance how many times the loop should run.
Syntax:
for (init counter; test counter; increment counter)
{
code to be executed;
}shaalaa.com
Looping Structure
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
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”;
}
?>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;
}
?>Write Syntax of For each loop in PHP.
Write the features Looping Structure.
Differentiate For each and While loop.
Write short notes on Do while Loop.
Explain Looping Structure in PHP.
Explain the process Do while loop.
Explain concepts of for loop with example.
