Hiya,
Try using $_SESSION['variablename']
To refer to session variables.
Cheers
Simon

-----Original Message-----
From: Stéphane Pinel [mailto:[EMAIL PROTECTED]] 
Sent: 11 October 2002 11:16
To: [EMAIL PROTECTED]
Subject: [PHP] Updating session variables values during session


Hi,

PHP 4.1.X

I'm trying, during the session time, to change the value of 2 session
variables:

My first attempt was simply like this:

$sess_client = $theClient;
$sess_ref_clientFact = $theRefClient;

...but following pages still get old values from the session variables.

Then I tried this:

    session_unregister("sess_client");
    session_unregister("sess_ref_clientFact");
    $sess_client = $ClientName;
    $sess_ref_clientFact = $ClientRef;
    session_register("sess_client");
    session_register("sess_ref_clientFact");

Same, following pages get old values from these 2 session variables...

I would appreciate if I could get some help ?

Thanks.

-------------------
Stéphane Pinel
[EMAIL PROTECTED]
iChat : [EMAIL PROTECTED]


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to