redarrow Posted October 19, 2006 Share Posted October 19, 2006 when a user turns of there cookies then the session uses it's own defualt values how can i get those defualt values when the cookies are on.i think you call it sid[code]<?session_start();$word="my name is redarrow";$_SESSION['word']=$word;echo $_SESSION['word'];?>[/code] Quote Link to comment https://forums.phpfreaks.com/topic/24417-see-the-session-data-as-raw/ Share on other sites More sharing options...
HuggieBear Posted October 19, 2006 Share Posted October 19, 2006 I'm not sure I know what you mean, but there's a constant called SID that you can refer to once you've started a session...[code]<?phpsession_start();echo SID; // This obviously only works once you've started a session.?>[/code]RegardsHuggie Quote Link to comment https://forums.phpfreaks.com/topic/24417-see-the-session-data-as-raw/#findComment-111172 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.