Fwd: Re: [PHP] Passing through Array's to another script

2001-12-18 Thread TD - Sales International Holland B.V.
-- Forwarded Message -- Subject: Re: [PHP] Passing through Array's to another script Date: Tue, 18 Dec 2001 22:01:53 +0100 From: TD - Sales International Holland B.V. [EMAIL PROTECTED] To: gkin [EMAIL PROTECTED] On Tuesday 18 December 2001 14:43, you wrote: Ok I'm a newbie

RE: Re: [PHP] Passing through Array's to another script

2001-12-18 Thread Jerry Verhoef (UGBI)
-Original Message- From: TD - Sales International Holland B.V. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 18, 2001 10:03 PM To: [EMAIL PROTECTED] Subject: Fwd: Re: [PHP] Passing through Array's to another script -- Forwarded Message -- Subject: Re: [PHP

Re: Re: [PHP] Passing through Array's to another script

2001-12-18 Thread Julio Nobrega Trabalhando
Well, there's a small difference between form's GET/POST and passing variables using the ? on urls. I don't know the techinal details of it, but it's possible. I guess, on this particular case, the form method is POST. When the next page is loaded (the action target), you put some GET

Re: [PHP] Passing through Array's to another script

2001-12-18 Thread Jon Haworth
December 2001 14:32 To: [EMAIL PROTECTED] Subject: Re: Re: [PHP] Passing through Array's to another script Well, there's a small difference between form's GET/POST and passing variables using the ? on urls. I don't know the techinal details of it, but it's possible. I guess, on this particular

Re: [PHP] Passing through Array's to another script

2001-12-18 Thread Julio Nobrega Trabalhando
However, you can't do this: form action=script.php?a=foob=bar method=post input name=c /form Because a b won't get submitted. Well, like I said, I don't understand very well, but things after the ? are available on the action page, even if the method is POST. Here's a tested example