elias wrote:
> 
> 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


Hi,

Never tried it either, but from previous postings I remember you
should just be able to use array's with no prob's.

(4 all I can remember i.e.)

* R&zE:

***************************
**  Renze Munnik
**
**  E: [EMAIL PROTECTED]
**  M: +31 6 218 111 43
***************************

-- 
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]

Reply via email to