Showing posts with label Advantages and disadvantages of GET and POST Methods. Show all posts
Showing posts with label Advantages and disadvantages of GET and POST Methods. Show all posts
What are the differences between Get and post methods.
Posted by Raj
What are the differences between Get and post methods.
GET Method:
POST Method:
GET Method:
- Data is append in url and information will appear in URL.
- Get() transfer only 255 char.
- It is not secure .
- GET request is comparatively faster.
- GET is the default method of the HTML FORM element.
- POST request is encapsulated in the body of the HTTP request and can't be seen.
- No limitation for the POST request.
- Post method is secure as compared to get method.