1.

What Is The Difference Between Get And Post Http Methods?

Answer»

GET:

  1. Use when URL ACCESS will not change the state of the database
  2. Use to ASK for a specific piece or set of information

EXAMPLE: CLICKING a hyperlink uses GET

POST:

  1. Use when URL access will change the state of the database
  2. Use to post a specific piece or set of information

Example: Sending information in a Web-based form uses POST.

GET:

Example: Clicking a hyperlink uses GET

POST:

Example: Sending information in a Web-based form uses POST.



Discussion

No Comment Found