Re: [PHP] Submitting "get" form

2004-08-22 Thread Gerard Samuel
Chris Shiflett wrote: Yes, when you use the GET method, the query string of the URL that your browser requests contains the form data. I think you want to have something like this in your form: Thanks John/Chris for the explanations... -- PHP General Mailing List (http://www.php.net/) To unsubscri

Re: [PHP] Submitting "get" form

2004-08-22 Thread Chris Shiflett
--- Gerard Samuel <[EMAIL PROTECTED]> wrote: > Say I have a form like -> > > ... > > > > If this form is submitted, the $_GET['id'] variable *is not* available. > If the method is changed to "post", the $_GET['id'] variable *is* > available. > > Is this how forms are supposed to work??? Y

Re: [PHP] Submitting "get" form

2004-08-22 Thread John Holmes
Gerard Samuel wrote: Say I have a form like -> ... If this form is submitted, the $_GET['id'] variable *is not* available. If the method is changed to "post", the $_GET['id'] variable *is* available. Is this how forms are supposed to work??? Yes. -- ---John Holmes... Amazon Wishlist: www.ama

[PHP] Submitting "get" form

2004-08-22 Thread Gerard Samuel
Say I have a form like -> ... If this form is submitted, the $_GET['id'] variable *is not* available. If the method is changed to "post", the $_GET['id'] variable *is* available. Is this how forms are supposed to work??? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe,