Advertisement
Guest User

Untitled

a guest
Jul 30th, 2014
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2. $action=$_GET['action'];
  3. if (isset($action) && file_exists($action)){
  4. include_once($action.".php");}
  5. elseif (!file_exists($action)) {
  6. echo'File not exists';
  7. die();
  8. }
  9. else{
  10. include_once(forum.php);
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement