cinema-studio-pro/backend/test.php
2026-01-13 14:52:37 +05:30

9 lines
264 B
PHP

<?php
// Simple test file to verify backend is accessible
header('Content-Type: application/json');
echo json_encode([
'status' => 'success',
'message' => 'Backend is running!',
'php_version' => phpversion(),
'timestamp' => date('Y-m-d H:i:s')
]);