Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $fallback = "home.php";
- if(isset($_GET['category'])) {
- $category = $_GET['category'];
- $file_path = "menu/{$category}.php";
- if(file_exists($file_path)) {
- include($file_path);
- } else {
- include($fallback);
- }
- } else {
- include($fallback);
- }
Add Comment
Please, Sign In to add comment