Get method |
Post method |
Get Request sends the request parameter as query string appended at the end of the request. |
Post request send the request parameters as part of the http request body. |
Get method is visible to every one (It will be displayed in the address bar of browser ). |
Post method variables are not displayed in the URL. |
Restriction on form data, only ASCII characters allowed. |
No Restriction on form data, Binary data is also allowed. |
Get methods have maximum size is 2000 character. |
Post methods have maximum size is 8 mb. |
Restriction on form length, So URL length is restricted |
No restriction on form data. |
Remain in browser history. |
Never remain the browser history. |