DONT ADD ANYTHING HERE!

  1. The only allowed values for the method attribute of form (case insensitive):
    1. post
      form data sent as the request body
    2. get (default)
      form data is appended to the action URL with a ? separator
    3. dialog
      When the form is inside a dialog, closes the dialog and causes a submit event to be fired on submission, without submitting data or clearing the form
  2. Note that PUT is not allowed in a html form (see here)

Notes

HTTP Methods
HTTP Verb CRUD Meaning
POST Create Create a resource
GET Read Retrieve a representation of a resource
PUT Update Update or create a resource
DELETE Delete Delete a resource

Mnemonic

pUt Update

References