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

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

?>
</body>
</html>