This is a basic PHP program to describe the While Loop in PHP with an example and real-time output. Below examples will help you in the better understanding of While Loop in PHP programming language. While Loop is used to traverse a set of code number of times.
Below is the standard syntax of While Loop in PHP programming language.
1 2 3 4 5 6 7 8 9 |
<?php while(condition) { //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 $n=1; while($n<=10) { echo "$n<br/>"; $n++; } ?> |
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.