Connect With Us

ads

Tuesday 24 January 2017

What is the difference between GET and POST method ?

GET: Get method  form data encoded into A URL by the browser. The form data is visible in URL bar.. The form data is restricted to ASCII codes.

Get request only limited amount of data can be sent because data in header. Get request is not secured because data is exposed in URL bar.

POST: Post method large amount of data can be sent .because data kept in body.Post method is secured because data is not exposed in url bar. This method is used in form and and secure website.  This request can not be bookmarked.

No comments

Post a Comment