2026-06-10 16:31:05 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="fr">
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="UTF-8">
|
2026-06-10 22:01:21 +02:00
|
|
|
<title>Résultats de recherche pour "<?= html_escape($search_keyword) ?>"</title>
|
2026-06-10 16:31:05 +02:00
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
|
2026-06-10 22:01:21 +02:00
|
|
|
<p><a href="<?= site_url('home') ?>">⬅ Retour à l'accueil</a></p>
|
2026-06-10 16:31:05 +02:00
|
|
|
|
2026-06-10 22:01:21 +02:00
|
|
|
<h1>Résultats pour : "<?= html_escape($search_keyword) ?>"</h1>
|
2026-06-10 16:31:05 +02:00
|
|
|
|
|
|
|
|
<?php if (empty($games)): ?>
|
|
|
|
|
<p>Aucun jeu vidéo ne correspond à votre recherche.</p>
|
|
|
|
|
<?php else: ?>
|
2026-06-10 22:01:21 +02:00
|
|
|
<p><strong><?= count($games) ?></strong> jeu(x) trouvé(s) :</p>
|
2026-06-10 16:31:05 +02:00
|
|
|
<ul>
|
|
|
|
|
<?php foreach ($games as $game): ?>
|
|
|
|
|
<li>
|
2026-06-10 22:01:21 +02:00
|
|
|
<a href="<?= site_url('game/detail/' . $game['id']) ?>">
|
|
|
|
|
<strong><?= html_escape($game['name']) ?></strong>
|
2026-06-10 16:31:05 +02:00
|
|
|
</a>
|
2026-06-10 22:01:21 +02:00
|
|
|
(<?= html_escape($game['releaseYear']) ?>)
|
2026-06-10 16:31:05 +02:00
|
|
|
</li>
|
|
|
|
|
<?php endforeach; ?>
|
|
|
|
|
</ul>
|
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|