- The main difference between GET and POST is how the form data is passing.
- Both are used for passing form field values.
- All the values which is submitted by the GET method will be appended to the URL.
Where as POST method send the data with out appending the URL(hidden) - In GET Method we can bookmark the URLs where as in POST method its not possible.
- In GET Method there is a limit for passing the data from one page to another(ie 256 characters according to w3c standards)
But in POST we can send large amount of data - Compared to POST get is Faster
- POST is more secure than get method
- If you refresh the page , POST method shows an annoying alert box
- Some firewalls doesn't allow POST methods.
- All the informations which is passed by GET method will be stored in webserver (log file) but in POST we can not
SES, SEO, SEM, Linux and Microcontroller Help, News and Experience sharing Blog
"My PIC Microcontroller Articles are moved to http://picmicrochip.blogspot.com
Thursday, January 14, 2010
Compare GET and POST Methods of HTML Form
Compare GET and POST Methods of HTML Form
Labels:
Others
Subscribe to:
Post Comments (Atom)
2 comments:
thank you for important learning html
nice article about Get and Post in php
http://www.checkandlearn.com
Post a Comment