for loop



examples/intro/for_loop.php
<?php

for($i=1; $i <= 9; $i++) {
    print "$i<br>";
}

?>