mirror of
https://github.com/janunger/rheinwerk-video-training.git
synced 2024-11-22 15:13:42 +01:00
5 lines
57 B
PHP
5 lines
57 B
PHP
|
<?php
|
||
|
|
||
|
for ($i = 0; $i < 10; $i++) {
|
||
|
echo $i . '<br>';
|
||
|
}
|