|
Posted by Lowell Allen on 11/17/05 17:44
On Nov 15, 2005, at 12:07 PM, Ben Miller wrote:
> I am trying to learn how to work with arrays, and have the basic
> concept
> down for working within a single page, but I am having trouble sending
> an
> array from one page to another. For example, I can send a variable
> from
> page to page using either the URL, such as www.domain.com/?foo=bar, or
> using
> a form, but can I send an array from one page to another using a form
> so
> that all the values in the array will be sent?
[snip]
If you don't want to use session variables (as already suggested), you
can serialize the array, then send as a hidden form value:
<http://us2.php.net/manual/en/function.serialize.php>
You may need to also encode the serialized value:
<http://us2.php.net/manual/en/function.base64-encode.php>
HTH
--
Lowell Allen
[Back to original message]
|