GET requests can be cached
GET requests remain in the browser history
GET requests can be bookmarked
GET requests should never be used when dealing with sensitive data
GET requests have length restrictions
GET requests should be used only to retrieve data
since form data is in the URL and URL length is restricted. A safe URL length limit is often 2048 characters but varies by browser and web server.
POST supports advanced functionality such as support for multi-part binary input used for file uploads to web servers.
POST requests are never cached
POST requests do not remain in the browser history
POST requests cannot be bookmarked
POST requests have no restrictions on data length