11 lines
266 B
PHP
Executable File
11 lines
266 B
PHP
Executable File
<?php
|
|
try {
|
|
require_once __DIR__ . '/../../tools/db.php';
|
|
$pdo = tools_build_pdo();
|
|
} catch (PDOException $e) {
|
|
http_response_code(500);
|
|
header('Content-Type: application/json');
|
|
echo json_encode(['error' => 'DB connection failed']);
|
|
exit;
|
|
}
|