Files
nat-as-server/checkDatabaseExists.php
2026-04-15 10:19:42 +02:00

11 lines
229 B
PHP
Executable File

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