aktuelle.kurse/m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/02 Grundlagen/01 Inlcude, Prog Strukturen/while2.php

8 lines
76 B
PHP
Raw Normal View History

2022-02-24 09:37:43 +01:00
<?php
$i=1;
while ($i <= 10):
echo "$i ";
$i++;
endwhile;
?>