mirror of
https://github.com/pgmr3/synologySsoClientExamplePage.git
synced 2025-12-13 21:45:50 +01:00
7 lines
87 B
Plaintext
7 lines
87 B
Plaintext
$x = 1;
|
|
|
|
do {
|
|
echo "The number is: $x <br>";
|
|
$x++;
|
|
sleep(1);
|
|
} while ($x <= 10); |