initial upload

This commit is contained in:
root
2026-03-24 10:22:01 +00:00
commit e805f225bc
19 changed files with 2160 additions and 0 deletions

10
checkDatabaseExists.php Executable file
View File

@ -0,0 +1,10 @@
<?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]);
}