Answer:
POST
Explanation:
Form data can be passed using GET or POST.
When the form data is passed using the GET method, the data gets appended to the query-string which is a part of the extended url. However this can cause a problem in scenarios where the number of parameters is large or exposing the parameters via url represents a security breach. In such cases we can use the POST method of passing form data where the parameters are passed as key value pairs as part of the HTTP Request and the url is not impacted.