Skip to content

Instantly share code, notes, and snippets.

@trumball
Created May 24, 2013 21:04
Show Gist options
  • Save trumball/5646509 to your computer and use it in GitHub Desktop.
Save trumball/5646509 to your computer and use it in GitHub Desktop.
Form PUT This is the correct way to use PUT and DELETE in a HTML form
<form method="POST">
<input type="hidden" name="_METHOD" value="PUT"/>
</form>
<form method="POST">
<input type="hidden" name="_METHOD" value="DELETE"/>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment