How to specify the 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 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>

Updated on: 03-Mar-2020

167 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements