php-general | 2003022
Date: 02/28/03
- Next message: Mathieu Dumoulin: "[PHP] Mailling question"
- Previous message: ati ati: "[PHP] exec/passthru: io operation not permitted"
- In reply to: Michiel van Heusden: "[PHP] passing arrays to a session-variable"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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");
>
> // method 2
> session_register("array2");
> $array2 = array("itemA", "itemB");
>
> header ("Content-type: text/html");
>
> echo $array1[0]. "<br />";
> 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
> michiel
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
- Next message: Mathieu Dumoulin: "[PHP] Mailling question"
- Previous message: ati ati: "[PHP] exec/passthru: io operation not permitted"
- In reply to: Michiel van Heusden: "[PHP] passing arrays to a session-variable"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

