xaviermontenegro

Untitled

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