<?php

/* **************************************************************************
 *
 *    Kontrollstrukturen: while, do ... while 
 *
 *  Im Manual: 
 *        http://www.geo.tu-freiberg.de/docs/php/de/control-structures.while.html
 *        http://www.geo.tu-freiberg.de/docs/php/de/control-structures.do.while.html
 *
 *    PHP-Kurs am Rechenzentrum der TU Freiberg
 *    (c) 11/2000, Bernhard Fuerst <fuerst@mac.com>
 *
 * **************************************************************************/

// while
$i 1;
while ( 
$i <= 10 
{
    print 
$i "<br>";
    
$i++;  
}

?>

<p>

<?php

// do ... while
$i 10;
do 
{
    print 
$i "<br>";
    
$i--;
} while ( 
$i );


?>