Re: php4 session_start cont.

2002-03-16 Thread Volker Schlecht
* Kurc, Marcin A. <[EMAIL PROTECTED]> [020315 22:06]: > session_start(); > session_register("test_var"); > $test_var = "test variable"; [...] > ?> > so up to this point everything is OK; now I follow the hyperlink Ever tried doing the following: > session_start(); session_register("test_va

php4 session_start cont.

2002-03-15 Thread Kurc, Marcin A.
it looks like php is starting the session, although somehow the file /tmp/sess_$PHPSESSID gets cleared here is a little test I start with running the following: $test_var"); print (""); print ($PHPSESSID); print (""); $sess_reg=session_is_registered("test_var"); print ($sess_reg); ?> the output: