This is a basic PHP program to describe the For Loop with an example and real-time output. Below examples will help you in the better understanding of For Loop in PHP programming language. For Loop is used to traverse a set of code number of times.
Below is the standard syntax of For Loop in PHP programming language.
1 2 3 4 5 6 7 8 9 |
<?php for(initialization; condition; increment/decrement) { //write something here } ?> |
Copy the below code and execute it with the help of PHP compiler.
1 2 3 4 5 6 7 8 9 |
<?php for($n=1;$n<=10;$n++) { echo "$n<br/>"; } ?> |
1
2
3
4
5
6
7
8
9
10
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.