" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2025 KUDO.TIPS - All rights reserved.
<form action="index.php" action="GET">
Podaj N <input name="n" />
<button type="submit">Dalej</button>
</form>
<?php
if(!empty($_GET["n"]))
{
while($i < $_GET["n"])
{
echo $i,",";
$i++;
}
}
?>
</body>