<?php
require_once __DIR__ . '/config.php';
$id = filter_input(
INPUT_GET,
'id',
FILTER_VALIDATE_INT
);
if (!$id) {
http_response_code(400);
exit('Neplatné ID.');
}
<?php
require_once __DIR__ . '/config.php';
$id = filter_input(
INPUT_GET,
'id',
FILTER_VALIDATE_INT
);
if (!$id) {
http_response_code(400);
exit('Neplatné ID.');
}
Frissítve: 2026-08-09 11:02:19