Search code examples
htmlformshttp

Using PUT method in HTML form


Can I use a PUT method in an HTML form to send data from the form to a server?


Solution

  • XHTML 1.x forms only support GET and POST. GET and POST are the only allowed values for the "method" attribute.