--- John Manko <[EMAIL PROTECTED]> wrote:
> Just a small point, you can have both GET and POST.
> 
> ------ search.html -----
> <form method=POST 
> action='page.php?...

Notice your form method is POST, not both GET and POST. The HTTP request sent
after a user submits this form will be a POST request, even though you do have
GET variables. Try not to confuse GET/POST variables with GET/POST request
methods.

Chris

=====
Become a better Web developer with the HTTP Developer's Handbook
http://httphandbook.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to