Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

post vs. put when posting a form

When evaluating that a form was submitted, I check that the method was post, not get. I was told this is a good way to know that the form was submitted by clicking the submit button and that it's not just being submitted by a script that's passing the data in the url.

How about the "put" method. It seems very similar to "post". Can it be more or less be used instead of "post" without much loss in the benefits provided by "post"?

like image 404
samuel Avatar asked Apr 17 '26 02:04

samuel


1 Answers

No.

HTML only supports post and get as form methods, even though HTTP has others.

Even outside the context of an HTML form, the answer is still no as PUT and POST are very different. POST is a generic "Here is some data, do something with it" method, while PUT means "Replace the resource at this URI with this data".

like image 164
Quentin Avatar answered Apr 19 '26 16:04

Quentin