'method' Syntax and Note : method « HTML Attributes Reference « HTML CSS Reference






'method' Syntax and Note

Note:
    
This attribute defines how to send the form data to the server. 
Possible values are get and post.

The get method appends the form input elements and their data to the underlying URL. 
The get method can be useful when dealing with small amounts of data.
URL length is limited to 2,048 bytes. 

The post method sends the data via an HTTP post transaction.
There is no limititatio using this method.
    
Syntax:
    
<form method="value"> . . . </form>
    

      
      








Related examples in the same category

1.'method' Example
2.method is applied to