Assuming my web application has full support of PUT and DELETE on the server side, should I make use of them?
Basically my question is how many browsers support this:
<form method="PUT">
or
<form method="DELETE">
Is there any benefits to using these two HTTP Methods other than being REST-compliant? (assuming the replacement for these two methods is the commonly used POST)
PUT
orDELETE
in forms. The relevant section is currently in at "last call for comments", so it's possible they'll be implemented but unfortunately it doesn't look like it. I think it was in there at one point and then removed. – Flight