Use the method attribute to specify the HTTP method to use when sending form data in HTML.
You can try the following code to implement the method attribute−
<!DOCTYPE html> <html> <head> <title>HTML option Tag</title> </head> <body> <form action = "/cgi-bin/dropdown.cgi" method = "post"> <select name = "dropdown"> <option value = "HTML" selected>HTML</option> <option value = "Ruby">Ruby</option> </select> <input type = "submit" value = "Submit" /> </form> </body> </html>
The above is the detailed content of How to specify which HTTP method to use when sending form data in HTML?. For more information, please follow other related articles on the PHP Chinese website!