Guest User

Untitled

a guest
Jun 18th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. <?php
  2. session_start();
  3.  
  4. if(! isset($_SESSION['user_id'])){
  5. //pretend user is not logged in
  6. exit('You do not have permission to view this page.');
  7. }
  8. ?>
Add Comment
Please, Sign In to add comment