Interview Questions

What is the difference between the HTML form methods GET and POST?

HTML Interview Questions and Answers


(Continued from previous question...)

61. What is the difference between the HTML form methods GET and POST?

The method parameter specifies which method the client is using to send information to the WEB server. The method determines which parameter you will find the CGI request data in:

* POST - post_args
* GET - http_search_args

(Continued on next question...)

Other Interview Questions