Haifa linux club:PHP lecture
Prev Next


While loops


While:
<?
$i 
1;
while (
$i <= 10) {
    print 
$i++;  /* the printed value would be
                    $i before the increment
                    (post-increment) */
}
?>
do .. while:
<?
$i 
0;
do {
   print 
$i++;
} while (
$i10);
?>




HOME