<?php
$n=0;
while ($n<6) {
   echo ++$i."\n";
   ++$n;
}
echo " ";
Return 1;
?>

