简体   繁体   中英

Firefox drops the session variable

I just have a simple session start and assigned a session variable on login. However when I switch pages, the session variable does not stick in Firefox. I can still see the session is there but just not the variable. In IE7, IE8, Chrome, and Safari, it works and sticks. What is happening in Firefox and how can I fix it?

Here is a snippet of the code.

session_start();

if ($_POST['login']) :
$_SESSION['loggedin'] = 1;
endif;

Seems to be a client side issue. Probably Firefox does not send the session cookie.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM