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 t

RE: [PHP] get and post together

2007-08-09 Thread Daevid Vincent
I've done that on occasion, but do be careful what you are sending via the GET. It has a size limit for one (maybe 1k chars?) and it is trivial for someone to modify. I generally use GET when I think it's a page "setup" the user may wish to bookmark (ie: page.php?orderby=name&descending=1&report=

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 da

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 klud

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 ugl