Hi,

I use this simple session script below,  but the session variables are not
carried over from 1.php to 2.php.  What can be wrong?  I can see on the
server that the files are created.  When I open 1.php a 1K file is created
on the server and the contents (my_session_variable|s:10:"some value";).
When I open 2.php afterwards a 0K file is created on the server which is
empty.

I use IIS5, Win2k, PHP 4.0.5, IE5.5.
Session method: files

(1.php)

<?php
session_start();
$my_session_variable = "some value";
session_register("my_session_variable");
?>

and

(2.php)

<?php
session_start();
print "Value of 'my_session_variable': $my_session_variable";
?>

Tx
BK



-- 
PHP General 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]

Reply via email to