first commit

This commit is contained in:
pgmr3
2023-12-22 17:21:31 +01:00
commit dde03b1d27
57 changed files with 6287 additions and 0 deletions

7
RDAP/php_do_timer.txt Normal file
View File

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