PHP do while loop PHP

PHP do while loop  

PHP do while loop

PHP do while loop

PHP do while loop can be used to traverse set of code like php while loop. The PHP do-while loop is guaranteed to run at least once.

It executes the code at least one time always because condition is checked after executing the code.

Syntax

  1. do{  
  2. //code to be executed  
  3. }while(condition);  

Flowchart

flowchart of php do while loop

Example

  1. <?php  
  2. $n=1;  
  3. do{  
  4. echo "$n<br/>";  
  5. $n++;  
  6. }while($n<=10);  
  7. ?>  

Output:

1
2
3
4
5
6
7
8
9
10

 

Download free E-book of PHP


#askProgrammers
Learn Programming for Free


Join Programmers Community on Telegram


Talk with Experienced Programmers


Just drop a message, we will solve your queries