Guest User

Untitled

a guest
Jul 16th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. if(isset($_GET['do']))
  2. {
  3. $system = filter($_GET['do']);
  4. $page = filter($_GET['page']);
  5. if(file_exists('application/pages/'.$system.'/'.$page.'.php'))
  6. {
  7. include('application/pages/'.$system.'/'.$page.'.php');
  8. }
  9. else
  10. {
  11. $nopage = 1;
  12. }
  13. }
  14. else
  15. {
  16. $nopage = 1;
  17. }
  18.  
  19. if($nopage == 1)
  20. {
  21. echo("<div class='halfwidthcontainer'>");
  22. include('application/pages/home.php');
  23. echo("</div>");
  24. }
  25. }
Add Comment
Please, Sign In to add comment