How to destroy only one session and another session work both on

<?php
include('session_sty_chk.php');
session_start();
if(session_destroy()) // Destroying All Sessions
{

//echo "<script>alert('$login_sessionn log out successfully');</script>";
echo"<script>window.location.href = 'index_sty_chk.php';</script>";
//header("Location: index.php"); // Redirecting To Home Page
}
?>

      

the above code is the code to destroy the session.

In my application I create two sessions Session name: - 1: -admin, 2: -public user

when i click logout button and then delete bothe admin and community user session.

So sir, I only want the community user session disabled in the application, so help me solve it.

+3


source to share


2 answers


unset($_SESSION['society user']);

      



use this code

+4


source


From php website:

<?php
$session_id_to_destroy = 'nill2if998vhplq9f3pj08vjb1';
// 1. commit session if it started.
if (session_id()) {
    session_commit();
}

// 2. store current session id
session_start();
$current_session_id = session_id();
session_commit();

// 3. hijack then destroy session specified.
session_id($session_id_to_destroy);
session_start();
session_destroy();
session_commit();

// 4. restore current session id. If don't restore it, your current session will refer to the session you just destroyed!
session_id($current_session_id);
session_start();
session_commit();

?>

      



Link: http://php.net/manual/en/function.session-destroy.php#114709

0


source







All Articles