Hey Folks:
I am finally using PHP sessions in IE 5.5 and NN 6 successfully, but I am
not able to retrieve the data from my registered variables in Communicator
4.7.
I created a simplified test app at the following URL:
http://puredev.com/session/test1.php
If you would be so kind, open this URL and click on the test2.php link and
you should see the following if the data was retrieved:
Test Results: The session data was transferred.
The code for these two test pages is as follows:
TEST1.PHP
<?php
session_start();
session_register("test");
$test = "The session data was transferred.";
echo "Click this link: <a href=\"test2.php?".SID."\">test2.php</a>";
?>
TEST2.PHP
<?php
session_start();
echo "Test Results: ".$test;
?>
What am I missing? Do I need to explicitly set the cookie for Communicator
4.7?
Thank you in advance!
-luke
Luke Muszkiewicz
Pure Development, LLC
http://puredev.com
--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]