Guest User

Untitled

a guest
Jul 21st, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. <?php
  2. if(!empty($_GET["p"])){
  3. if(is_file($_GET["p"].".php")){
  4. include_once($_GET["p"].".php");
  5. }else{
  6. include_once("404.php");
  7. }
  8. }else{
  9. include_once("start.php");
  10. }
  11. ?>
Add Comment
Please, Sign In to add comment