11 lines
229 B
PHP
Executable File
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]);
|
|
}
|