Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

session value not removed php


All of a sudden neither session_destroy() nor $_SESSION=[] were sufficient to log out. I found the next to work:
<?php
setcookie(session_name(), session_id(), 1); // to expire the session
$_SESSION = [];
?>

Source by www.php.net #
 
PREVIOUS NEXT
Tagged: #session #removed #php
ADD COMMENT
Topic
Name
6+2 =