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