Home  >  Article  >  Web Front-end  >  How to specify which HTTP method to use when sending form data in HTML?

How to specify which HTTP method to use when sending form data in HTML?

WBOY
WBOYforward
2023-08-20 19:17:08704browse

How to specify which HTTP method to use when sending form data in HTML?

Use the method attribute to specify the HTTP method to use when sending form data in HTML.

Example

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!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete