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