Mega Code Archive

 
Categories / Php / Statement
 

Do while loop

<?php  $a = 1;  do{     echo $a . "<br>";     $a++;  }while ($a > 10);  ?>