4 Do While Loop in PHP

Program:
<?php
   
$i = 0;
do{
    echo "$i ";
    $i++;
}while($i<5)
?>


Output:
Do While Loop in PHP

Previous
Next Post »