ok.
when I run the script I gave you before,
the last GLOBALS array looks like this:
array
(
.................
[HTTP_SESSION_VARS] => Array
(
[text] => hello world three
)
[text] => hello world
[_SESSION] => Array
(
[text] => hello world two
)
...................
}
This is extremely useful information. This shows me how to acess my variables.
the key names to the global array are the left most indentation marked with square bracket [].
The keys are:
HTTP_SESSION_VARS
text
_SESSION
since these are in the GLOBAL array, I don't need to access them using GLOBAL.
because of the way it's shown,
I know I can access it like this:
$text
or
$HTTP_SESSION_VARS['text'];
or
$_SESSION['text']
and it will give me what I want.
anyway, let me see the output of when you run that script, and maybe I can help