Files
shape3d.it/public/api/_db.php
2026-01-23 23:45:16 +01:00

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;
}