aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/02 Grundlagen/01 Inlcude, Prog Strukturen/for2.php
Müller Harald 507e5da390 muh
2022-05-13 11:53:50 +02:00

6 lines
67 B
PHP

<?php
for ($i=1; $i <= 10; $i++):
echo "$i ";
endfor;
?>