vote up 3 vote down star

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?

flag

43% accept rate

4 Answers

vote up 2 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 1 vote down

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|flag
vote up 0 vote down

Request.form is not working when enctype="multipart/form-data" is used. Am I doing something worng in the code?

link|flag

Your Answer

Get an OpenID
or

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