3 While Loop in PHP

Prorgam:

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


Output:

While Loop in PHP

Previous
Next Post »