Files
nat-as-server/checkDatabaseExists.php
2026-03-24 10:22:01 +00:00

11 lines
232 B
PHP
Executable File

<?php
header('Content-Type: application/json');
$dbPath = '/var/www/html/uploads/questionnaire_database';
if (file_exists($dbPath)) {
echo json_encode(["exists" => true]);
} else {
echo json_encode(["exists" => false]);
}