5 For Loop in PHP

Program:

<?php
for($i=5;$i<=10;$i++)
{
    echo "$i  ";
}

?> 


Output:

For Loop in PHP

Previous
Next Post »