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.
This entry was posted on October 4, 2009 at 12:14 pm, and is filed under
Advantages and disadvantages of GET and POST Methods,
PHP,
PHP interview questions and answers
.You can leave a response, or trackback from your own site.