I place a session_start () within php tags at the top of one of my pages.
Then I get a value and placed it in a php variable called $clientid.
After that, I register the session variable using: session_registe r
("clientid") ; So far o.k. Two pages later, I'm trying to get the value of
that session variable using:
$viewerclientid = $_SESSION['client_id']; The problem that I'm having is
that while this works in some computers, other users
are having problems. It seems that they lose the value of this session
variable. Both users, the ones that run this successfully and the ones that
don't seem to be using
IE 6 as a browser on the same version of windows (XP).
Thanks.
Then I get a value and placed it in a php variable called $clientid.
After that, I register the session variable using: session_registe r
("clientid") ; So far o.k. Two pages later, I'm trying to get the value of
that session variable using:
$viewerclientid = $_SESSION['client_id']; The problem that I'm having is
that while this works in some computers, other users
are having problems. It seems that they lose the value of this session
variable. Both users, the ones that run this successfully and the ones that
don't seem to be using
IE 6 as a browser on the same version of windows (XP).
Thanks.
Comment