Powered by Blogger.

Showing posts with label GET. Show all posts
Showing posts with label GET. Show all posts

Wednesday, 11 January 2017

GET and POST method in HTML


HTML forms can use method by specifying method="POST" and method="GET" in <form> elemen.
GET method:
Appends form data into the URL in name/value pairs formet.
URL is limited in range 3000 characters


POST method:
No size limitations for the URL
Data is not shown is in URL
POST cannot be bookmarked