Differences between GET and POST methods
Differences between GET and POST methods
GET : Data in get method is not secured. Data is displayed in the browser. There can be 1024 bytes send using this method. GET requests can be cached. GET requests remain in the browser history
POST : POST method is secure and not displayed in browser. There is no limit to post data using the POST method.
POST requests are not cached. POST requests does not remains in the browser history.
Advertisements