Advertisement
Guest User

Untitled

a guest
Jul 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. <?php
  2. $p = (isset($_GET['p'])) ? $_GET['p'] : "";
  3. ?>
  4. <?php
  5. if (file_exists("pages/$p.php")) {
  6. include("pages/$p.php");
  7. }else{
  8. include("pages/home.php");
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement