0

When html form is submitted by using method POST, what data is submitted. I know that the name and value of the 'input' are submitted, but apart from that, is there anything else that gets through? In those terms, is there a difference for using method GET?

1 Answer 1

1

POST - submits data for processing to a source

GET - requests data from a source

You should read more on those here: http://www.w3schools.com/tags/ref_httpmethods.asp

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks Kyle. There it states "Note that query strings (name/value pairs) is sent in the HTTP message body of a POST request"; so I guess that means names and values and nothing else.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.