But, as I told you, your SUBMIT button doesn't work because of the
method="post"
WHen you get to the "done.html" page, you get a 405 error, which says this:
Quote:
|
HTTP Error 405 - The HTTP verb used to access this page is not allowed.
|
The "verb" in question is "post" (instead of "get"). HTML is not allowed to process "post" requests.
Okay?