The method attribute tells the server how to submit the form information. There are two methods, get and post. The default method is get.
method="get"
This sends the form information by including it on the URL. The get method sends the information to the server in one step. It is best used for forms where the information is not secure (as it can be seen in the URL), and the amount of information passed is small.