Created
November 18, 2024 15:42
-
-
Save chrapati24/b2fd39791763d346a88dad8025e2be34 to your computer and use it in GitHub Desktop.
Le code du routeur (plus simple, tu meurs).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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