Re: [PHP] passing arrays to a session-variable

2003-02-28 Thread Joshua Moore-Oliva
Try looking at this page http://www.php.net/manual/en/function.serialize.php Josh. On February 28, 2003 08:22 am, Michiel van Heusden wrote: > I'm using this script to test passing arrays to a Session-variable. > > session_start(); > > // method 1 > $_SESSION['array1'] = array("item1", "item2");

[PHP] passing arrays to a session-variable

2003-02-28 Thread Michiel van Heusden
I'm using this script to test passing arrays to a Session-variable. "; echo $array2[0]; ?> method 1 doesn't work until another PHP is loaded, only then the var is ouputted... method 2 works fine, but i'd prefer using $_SESSION all the way instead of session_register any suggestions? grace michie