cleaned up

This commit is contained in:
2026-02-06 09:30:59 +01:00
parent 197537e0a5
commit e23524b6bd
78 changed files with 8971 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?php
// Simple test file to verify PHP is working
header('Content-Type: application/json');
echo json_encode([
'success' => true,
'message' => 'PHP is working correctly',
'timestamp' => date('c'),
'server_info' => [
'php_version' => phpversion(),
'server_software' => $_SERVER['SERVER_SOFTWARE'] ?? 'Unknown'
]
]);
?>