In HTML forms containg file uploads, enctype="multipart/form-data" attribute has to be set. This much I know. But why? What exactly does it change? How does it differ from application/x-www-form-urlencoded?

link|improve this question

72% accept rate
feedback

3 Answers

Here's the W3C doc on both items. It's pretty dry but it can help some.

link|improve this answer
feedback

A multipart request can have multiple parts (sic). Thus you can send files in the HTTP request along with the rest of the request.

Multipart can also be found in emails with attatchments.

link|improve this answer
feedback

The default encoding of appliaction/x-www-form-urlencoded can't send a) large quantities or binary data or b) text containing non-ASCII characters. That's why you need to set it to multipart/form-data for file uploads.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.