1
0
Files
TaskBoard/backend/index.php
Falknat 301e179160 Инициализация проекта
Загрузка проекта на GIT
2026-01-11 15:01:35 +07:00

17 lines
473 B
PHP

<?php
require_once __DIR__ . '/app/config.php';
// Игнорируем запросы к favicon.ico и другим статическим файлам
$requestUri = $_SERVER['REQUEST_URI'] ?? '';
if (preg_match('/\.(ico|png|jpg|jpeg|gif|css|js|svg|woff|woff2|ttf|eot)$/i', $requestUri)) {
http_response_code(404);
exit;
}
header('Content-Type: application/json; charset=utf-8');
$accounts = Database::select('accounts', '*');
echo json_encode([$accounts]);