Question:Difference between get and post method?
Answer 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.
+ Report
Difference between get and post method?