Files
php_8/loops/for.php
2022-04-17 20:06:02 +03:00

5 lines
58 B
PHP

<?php
for ($i = 0; $i < 5; $i++) {
echo "$i<br />";
}