Guest User

Untitled

a guest
Nov 24th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. <?php
  2. function logoutUser(){
  3. session_unset();
  4. session_destroy();
  5. $_SESSION = array();
  6. header("Location: index.php");
  7. }
  8. ?>
Add Comment
Please, Sign In to add comment