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

7 lines
65 B
PHP

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