Posted by Henrik Hansen on 03/20/06 12:09
wesley@ispace.co.za writes:
> Can i send an array from one php script to another? If so, how?
> Thanks Wes
Serialize the array or send it via a html form or use a session
variable: eks,
$_SESSION["myarray"] = serialize($myarray);
Then on the dest. page you can use $myarray = unserialize($_SESSION["myarray"]);
--
Henrik Hansen
[Back to original message]
|