I read something about this on PHP docs, but it's not clear to me:
Do the most widely used browsers (IE, FF, Chrome, Safari, Opera, ...) support this
PUT
method to upload files?What HTML should I write to make the browser call the server via a
PUT
request? I mean do I need to write aFORM
with anINPUT
file field and just replace the attributemethod="POST"
withmethod="PUT"
?On the PHP docs (link above) they say a
PUT
request is much simpler than aPOST
request when uploading file, along with this advantage, what other advantages/disadvanatges do thePUT
has got compared to thePOST
?