prepare('SELECT * FROM articles WHERE id = :id'); $stmt->execute(['id' => $id]); $article = $stmt->fetch(); if (!$article) { http_response_code(404); include __DIR__ . '/404.php'; exit; } ?>
PubliƩ le