Jump to content

Recommended Posts

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]
Link to comment
https://forums.phpfreaks.com/topic/24417-see-the-session-data-as-raw/
Share on other sites

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]<?php
session_start();
echo SID; // This obviously only works once you've started a session.
?>[/code]

Regards
Huggie
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.