Question:
Difference between get and post method?
GET Method:get method is used for submitting small amount of data. Data shows in the URL, so it is not secure.
POST Method:post method is used for submitting small amount of data. Data does not show URL, so it is secure.