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
my/serverinfo.php Normal file
View File

@@ -0,0 +1,7 @@
<?php
// Generate the server information here, e.g. CPU utilization, RAM, etc.
$serverInfo = "Server time: " . date('Y-m-d H:i:s');
// Output server information as text
echo $serverInfo;
?>