GET is the default method. The names and values of the INPUTs in the form are appended to the name of the ACTION URL and sent to the server.
Note: that if no ACTION url is given, the current url will be used as the ACTION.
the target URL will be passes an argument string and should output the data to standard output. The output should have the same structure as an HTML document and will be read by the server.
Example
<FORM METHOD=GET ACTION=myurl> <INPUT NAME=one VALUE=a> <INPUT NAME=two VALUE=b> <INPUT NAME=three VALUE=c> <INPUT NAME=submit type=submit> </FORM>This looks like:
myurl?one=a&two=b&three=c