Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2. if(session_id()=='')
  3. {
  4. session_start();
  5. }
  6. if (!isset($_SESSION['can_access']) || ($_SESSION['can_access'] != TRUE))
  7. {
  8. echo "Access denied";
  9. exit();
  10. }
  11. ?>
  12. <!DOCTYPE html>
  13. <html xmlns="http://www.w3.org/1999/xhtml">
  14. <head>
  15. <meta charset="utf-8" />
  16. <meta name="viewport" content="width=device-width, initial-scale=1" />
  17. <meta http-equiv="X-UA-Compatible" content="IE=edge chrome=1" />
  18.  
  19.  
  20. </head>
  21. <body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement