16 lines
436 B
PHP
16 lines
436 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];
|
|
?>
|