aktuelle.kurse/m133/4_Modulinhalte_und_Uebungen/01-Grundlagen/01-Inlcude-Prog-Strukturen/for1.php
Harald G. Mueller 28ff49e098 muh
2023-06-29 07:50:41 +02:00

7 lines
64 B
PHP

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