|
Can you show the HTML that causes the error code?
How do you send a request to a server without there being HTML?
You open a browser, enter a URL, send a request to a server. The server returns a page of HTML containing a <FORM tag. You enter data into the form and press a submit button. The browser sends the request (either a GET or a POST) to the server.
THe HTML contains an attribute that says to GET or POST.
The error message you posted says that the HTML used a POST. Your thread title says the HTML used a GET.
If you will look at the page source in your browser you will be able to see which it is.
|