TomTees Posted October 4, 2010 Share Posted October 4, 2010 I'm brushing up on Cookies and Sessions. My book says that in order to access the same Session data, you must have session_start(); on each page that uses the Session data AND the user must have accepted the Session Cookie?! So what do you do if a user has Cookies Turned Off or Declines a Session Cookie?? (I find it hard to believe that Sessions are that "delicate"?!) TomTees Quote Link to comment https://forums.phpfreaks.com/topic/215091-sessions-and-cookies/ Share on other sites More sharing options...
coupe-r Posted October 4, 2010 Share Posted October 4, 2010 Hello, You are correct in that you need session_start(); What I do on my login page is set a session var of, say $_SESSION['user_id']. Then, I check for that var on every page as well. That way, if they don't have that session var active, they don't get access to any page. Hope that helps. Quote Link to comment https://forums.phpfreaks.com/topic/215091-sessions-and-cookies/#findComment-1118745 Share on other sites More sharing options...
TomTees Posted October 4, 2010 Author Share Posted October 4, 2010 Quote Hello, You are correct in that you need session_start(); What I do on my login page is set a session var of, say $_SESSION['user_id']. Then, I check for that var on every page as well. That way, if they don't have that session var active, they don't get access to any page. Hope that helps. Sorry, that wasn't my question... Quote Link to comment https://forums.phpfreaks.com/topic/215091-sessions-and-cookies/#findComment-1118748 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.