I never tried to use arrays in session variables,
but i believe if you try to serialize the array first and then register the
serialized value as session value it should work.
and ofcourse to retrieve it do reverse work by unserializing the variable
back to the array and use it.
-
$a = Array("asdad", "adasd", "123123", "6adas f g");
echo ($s = serialize($a)) . "<br>";
// you can session_register($s)
unset($a);
// in file2 you can retrieve $s and make $a back again:
$a = unserialize($s);
var_dump($a);
-
-elias
""Thomas Häger"" <[EMAIL PROTECTED]> wrote in message
9a1e71$eun$[EMAIL PROTECTED]">news:9a1e71$eun$[EMAIL PROTECTED]...
> Hi all,
>
> i need to use an array in a session variable.
> On a page i fill the Sessionvar :
> $HTTP_SESSION_VARS["xy"] []=$whatever
> (The var is registered with session_register("xy"))
> I mean that the entry would made at the end of the array, is it not so?
>
> But evrey time i proove the entries with count($HTTP_SESSION_VARS["xy"]) ,
> there are only one entry.
>
>
> Have somebody an idea?
>
> Thanks,
>
> Thomas
>
>
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]