xaviermontenegro

Untitled

Jul 16th, 2013
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $fallback = "home.php";
  2. if(isset($_GET['category'])) {
  3.     $category = $_GET['category'];
  4.     $file_path = "menu/{$category}.php";
  5.     if(file_exists($file_path)) {
  6.         include($file_path);
  7.     } else {
  8.         include($fallback);
  9.     }
  10. } else {
  11.     include($fallback);
  12. }
Add Comment
Please, Sign In to add comment