Advertisement
Guest User

Untitled

a guest
Jul 16th, 2013
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2.    
  3.     include "header.php";
  4.    
  5.     $gallery_set = false;
  6.     if(isset($_GET['gallery'])) {
  7.             $gallery_set = true;
  8.             $gallery = $_GET['gallery'];
  9.     }
  10.      
  11.     $file_path = "gallery/{$gallery}.php";
  12.     if($gallery_set && file_exists($file_path)) {
  13.             include($file_path);
  14.     } else {
  15.             include("home.php");
  16.     }
  17.  
  18.     include "footer.php";
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement