aktuelle.kurse/oldies/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/02 Grundlagen/01 Inlcude, Prog Strukturen/while1.php
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

9 lines
72 B
PHP

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