I configured wamp on my system and am testing development in this local environment. I worked on the logout functions and found that the generated session identifiers are the same in the browser.
Eg - chrome always generates session id = abc, for all users even after logging out and logging in; IE always generates an id = xyz session for all users.
Is this a problem with the wamp / my test environment?
find below my php script output -
<?php
session_start();
$sessionid = session_id();
echo $sessionid;
session_unset();
session_destroy();
?>
source
share