RE: [PHP] get and post together

2007-08-10 Thread Richard Lynch
On Thu, August 9, 2007 7:55 pm, Daevid Vincent wrote: It has a size limit for one (maybe 1k chars?) The limit has been increased with each version of the HTTP spec, and implementors have always been encouraged to make the limit as high as practical. But they could not claim to be implementing

RE: [PHP] get and post together

2007-08-09 Thread Daevid Vincent
record anyways (logging failed attempts of course). -Original Message- From: Ray [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 08, 2007 8:19 PM To: php-general@lists.php.net Subject: [PHP] get and post together Hi all, I've done something and I want to know if I should

[PHP] get and post together

2007-08-08 Thread Ray
Hi all, I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want and $_GET['foo']=='bar'. I freely admit it's an ugly kludge, but is it bad? Ray -- PHP General Mailing

Re: [PHP] get and post together

2007-08-08 Thread Sean Pringle
On 8/9/07, Ray [EMAIL PROTECTED] wrote: Hi all, I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want and $_GET['foo']=='bar'. I freely admit it's an ugly kludge,

Re: [PHP] get and post together

2007-08-08 Thread Richard Lynch
On Wed, August 8, 2007 10:18 pm, Ray wrote: I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want and $_GET['foo']=='bar'. I freely admit it's an ugly kludge, but

Re: [PHP] get and post together

2007-08-08 Thread Ray
On Wednesday 08 August 2007 10:29:33 pm Richard Lynch wrote: On Wed, August 8, 2007 10:18 pm, Ray wrote: I've done something and I want to know if I should be ashamed :) I've set up a form with method=POST and target =page.php?foo=bar it works fine. $_POST[...] gives me the data I want