Advertisement
Guest User

Untitled

a guest
Dec 4th, 2020
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php include './inc/header.php';?>
  2.  
  3. #SOME HTML STUFF HERE
  4.  
  5. <?php
  6.     $okfiles = array('example','testing','item','something');
  7.     if ($_GET["p"] AND @in_array( $_GET["p"] , $okfiles ) ) {
  8.         $includeFile = $_GET["p"] .".php";
  9.         if (@file_exists($includeFile)){
  10.         @include($includeFile);
  11.     } else {
  12.     echo include("./404.php");
  13.     }
  14.         }
  15.     else {
  16.     @include("./main.php");
  17.     }
  18. ?>
  19.  
  20. <?php include './inc/footer.php';?>
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement