xaviermontenegro

Untitled

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