Urldecode is automatic when you pass something through the URL. You can
call urldecode, but it doesn't do anything...

---John Holmes...

> -----Original Message-----
> From: Michael Virnstein [mailto:[EMAIL PROTECTED]]
> Sent: Friday, May 24, 2002 9:33 AM
> To: [EMAIL PROTECTED]
> Subject: Re: [PHP] passing arrays
> 
> $myarray = unserialize(urldecode($_GET['myarray']));
> or am i wrong?
> 
> Regards Michael
> 
> "Miguel Cruz" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
> [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> > 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


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

Reply via email to