send.php fix2

This commit is contained in:
2026-02-06 09:09:58 +01:00
parent bf482ccdea
commit 8a35cceefa
3 changed files with 15 additions and 2 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'
]
]);
?>