aktuelle.kurse/m133/Weiteres/Modul_Unterlagen_133_VO/01 Modulinhalte/02 Grundlagen/01 Inlcude, Prog Strukturen/while1.php
Harald G. Mueller a2dc35ce82 muh
2022-02-24 09:37:43 +01:00

9 lines
72 B
PHP

<?php
$i=1;
while ($i <= 10)
{
echo "$i ";
$i++;
}
?>