logo       

Re: passing arrays: msg#03626

php.general

Subject: Re: passing arrays

$myarray = unserialize(urldecode($_GET['myarray']));
or am i wrong?

Regards Michael

"Miguel Cruz" <mnc@xxxxxxxxx> schrieb im Newsbeitrag
news:Pine.LNX.4.44.0205231456150.20585-100000@xxxxxxxxxxxx
> On Thu, 23 May 2002, wm wrote:
> > is there a way to pass arrays in forms or in the url?
> >
> > if i have $myarray=array("one","two","three");
> >
> > can i pass the whole array at once as opposed to having to pass each
> > individual element?
>
> <a href="whatever.php?myarray=<?= urlencode(serialize($myarray)) ?>">
>
> Then in whatever.php:
>
> $myarray = unserialize($_GET['myarray']);
>
> miguel
>



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

News | FAQ | advertise