Hi there,

I have problem with passing the session ID, although session.use_trans_sid 
is set to 1 but the SID isn't inserted automaticaly in the URL if the 
cookies are disabled in my browser!

It should works as its clear mentioned at 
http://www.php.net/manual/en/ref.session.php

These are my test scripts:

Session1.php:
<?
session_start();
$IPAddress = getenv ("REMOTE_ADDR");
session_register("IPAddress");
echo "My IPAddress is $IPAddress";
?>
<a href="Session2.php"> Click here to test session variable</a>

Session2.php:
<?
session_start();
$IPAddress = $HTTP_SESSION_VARS[IPAddress];
echo "My IPAddress is $IPAddress";
?>

Do I have to do extra coding to make the SID inserted automaticaly if the 
cookies are disabled?

PHP Version: 4.0.6

_________________________________________________________________
Chat with friends online, try MSN Messenger: http://messenger.msn.com


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to