GET:
>>All the name value pairs are submitted as a query string in URL.
>>It's not secured as it is visible in plain text format in the Location bar of the web browser.
>>Not secure.
POST:
>>All the name value pairs are submitted in the Message Body of the request.
>>Post Method is secured because Name-Value pairs cannot be seen in location bar of the web browser.
>>If post method is used and if the page is refreshed it would prompt before the request is resubmitted.
>>It is more secure.