Files
green-gaming/index.php
T
2026-04-02 02:42:09 +02:00

16 lines
437 B
PHP

<?php
$route = [
'start' => 'fase1.html',
'mid' => 'istruzioniFase2.html',
'sep' => 'fase2.html',
'end' => 'risultatiFinali.html',
'leaderboard' => 'classifica.php',
'error' => 'error.html'
];
$p = $_GET['pagina'] ?? 'start';
if (!array_key_exists($p, $route)) {
http_response_code(404);
$p = 'error';
}
include $__DIR__ . '/pages/' . $route[$p];
?>