Initial commit

This commit is contained in:
2026-05-22 12:52:45 +00:00
commit 0f11edc62e
34 changed files with 3095 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
// Simple PHP version checker
echo "PHP Version: " . phpversion() . "\n";
echo "Server Software: " . $_SERVER['SERVER_SOFTWARE'] . "\n";
phpinfo();
?>