Answers

Question and Answer:

  Home  Programming Concepts

⟩ Suppose if GET method is less secure than POST method then why they introduced GET method.and well use only POST method alone. Wats the need for GET here?

Using GET method form data is appended to URL while using POST method it is transferred in the message body.

GET method is intended for information retrieval. It should be used to retrieve information that do not change state of server.

For functions such as login, POST method is preferable due to security reasons.

 223 views

More Questions for you: