what is method attribute!! what its use
Answers
Answered by
3
Answer:
The method attribute specifies how to send form-data (the form-data is sent to the page specified in the action attribute). The form-data can be sent as URL variables (with method="get") or as HTTP post transaction (with method="post"). Notes on GET: Appends form-data into the URL in name/value pairs.
Answered by
1
Explanation:
The purpose of the HTML method attribute is to define the HTTP method used to submit the form .HTML method attribute supports the form of element.GET or POST .When used the form data is aapended to the URI specified in the action attribute.
Similar questions