<html>
<head>
<title>While-Schleife</title>
</head>
<body>
<?

$i=0;

while ($i<7)
{
   echo $i;
   echo "<br>";
   $i=$i+1;
}

?>
</body>
</html>