Advertisements
Advertisements
Question
Define for loop in PHP.
Definition
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
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 is For each loop in PHP?
Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Explain the use of for each loop in PHP.
Differentiate While and Do while loops.
Explain Looping Structure in PHP.
Explain working of loops in array.