|
Posted by Kurda Yon on 01/14/08 03:01
Hi,
As you have recommended I did not use the session_register(). In one
file I have executed such line:
$_session['ex'] = 2.0;
Then, in another file, I have executed the following line:
$ex = 3.0.
And than I have noticed that the previous assignment is seen
everywhere (on other pages). So, as far as I understood, after the
usage of $_session['ex'] = 2.0, the $ex variable becomes a session
variable. Moreover, $ex and
$_session['ex'] variables are the same variable! In other words, I
have to call $_session['ex'] just the first time. After I did it once
I can use just $ex (instead of $_session['ex']). Is that true?
[Back to original message]
|