Files
synologySsoClientExamplePage/RDAP/php_do_timer.txt
2023-12-22 17:21:31 +01:00

7 lines
87 B
Plaintext

$x = 1;
do {
echo "The number is: $x <br>";
$x++;
sleep(1);
} while ($x <= 10);