Jump to content

Closing a session from a link


goocharlton

Recommended Posts

You can use it in the way suggested by abdbuet, meaning insert the code in an if() to check if logout isset().

 

<?php
session_start();
if(isset($_GET['logout'])){
     // Unset all of the session variables.
     $_SESSION = array();

     // If it's desired to kill the session, also delete the session cookie.
     // Note: This will destroy the session, and not just the session data!
     if (isset($_COOKIE[session_name()])) {
         setcookie(session_name(), '', time()-42000, '/');
     }

     // Finally, destroy the session.
     session_destroy();
}
?>

 

The comments are from the manual (in the session_destroy() function). What it does is simple, it destroys the session variable together with it's associated cookie.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.