Skip to content

Instantly share code, notes, and snippets.

@chrapati24
Created November 18, 2024 15:42
Show Gist options
  • Save chrapati24/b2fd39791763d346a88dad8025e2be34 to your computer and use it in GitHub Desktop.
Save chrapati24/b2fd39791763d346a88dad8025e2be34 to your computer and use it in GitHub Desktop.
Le code du routeur (plus simple, tu meurs).
<?php
$page = $_GET['page'] ?? null;
switch($page) {
case 'accueil':
echo "<h1>Accueil</h1>";
exit();
case 'about' :
echo "<h1>A propos</h1>";
exit();
default:
http_response_code(404);
echo "<h1>Erreur 404</h1>";
exit();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment