Guest User

Untitled

a guest
Jan 23rd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. session_start();
  3. session_destroy();
  4. $_SESSION['login'] = false;
  5.  
  6.  
  7. $r = "You have succesfully logged out!";
  8. ?>
  9.  
  10.  
  11.  
  12. <html>
  13. <body>
  14. <center>
  15. <br/><a href="login.php">Click here</a> to login again.
  16. <p>
  17. <?php
  18. echo $r;
  19. ?>
  20. </p>
  21. </center>
  22. </body>
  23. </html>
Add Comment
Please, Sign In to add comment