Difference Between GET and POST methods
| Get and Post methods are the two HTTP method used in HTML to submit the form data. Normally Get method is used to getting the data and POST method is used for all other operations like submitting/updating/storing etc.In Get method data is transmitted by encoding it in URL and in POST it is through message body. | |
