[PHP] Arrays through URL

2001-02-09 Thread Jamie
I'm trying to pass a multi dimensional array through a url link but I'm having a hard time doing this. Is it actually possible? from what I can tell the url just shows ...$form_options_array=Array Is there a better way to do this? thanks jamie -- PHP General Mailing List

Re: [PHP] Arrays through URL

2001-02-09 Thread Jørg V . Bryne
check out: serialize(); - Original Message - From: "Jamie" [EMAIL PROTECTED] To: "PHP" [EMAIL PROTECTED] Sent: Friday, February 09, 2001 10:28 AM Subject: [PHP] Arrays through URL I'm trying to pass a multi dimensional array through a url link but I'm havi

Re: [PHP] Arrays through URL

2001-02-09 Thread Christian Reiniger
On Friday 09 February 2001 10:31, Jrg V. Bryne wrote: check out: serialize(); I'm trying to pass a multi dimensional array through a url link but I'm having a hard time doing this. Is it actually possible? from what It's possible (with serialize), but not desirable if the array can become

Re: [PHP] Arrays through URL

2001-02-09 Thread Jørg V . Bryne
i would agree that serialize isn't good for huge arrays, yes, but if you're considering databases, why not use sessions? -J - Original Message - From: "Christian Reiniger" [EMAIL PROTECTED] To: "PHP" [EMAIL PROTECTED] Sent: Friday, February 09, 2001 11:32 AM Subje

Re: [PHP] Arrays through URL

2001-02-09 Thread Christian Reiniger
On Friday 09 February 2001 11:58, Jrg V. Bryne wrote: i would agree that serialize isn't good for huge arrays, yes, but if you're considering databases, why not use sessions? Well, if sessions are useful for you, go ahead and use them. If you only want to pass something on 1-5 links on your