Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What does enctype='multipart/form-data' mean in a form and when should we use it.

share|improve this question

4 Answers

up vote 100 down vote accepted

When you make a POST request, you have to encode the data that forms the body of the request in some way.

HTML forms provide two methods of encoding. The default is application/x-www-form-urlencoded, which is more or less the same as a query string on the end of the URL. multipart/form-data is a more complicated encoding but one which allows entire files to be included in the data.

Are far as the client is concerned: Use multipart/form-data when you have an <input type="file">

As far as the server is concerned: Use a prewritten form handling library (e.g. Perl's CGI->param or PHP's $_POST) and it will take care of the differences for you. Don't bother trying to parse the raw input received by the server.

share|improve this answer
Also: python's cgi.FieldsStorage – Edward Falk Oct 30 '12 at 6:58
10  
Let's not try to create a comprehensive list of form parsing libraries here… – Quentin Oct 30 '12 at 7:09

When submitting a form, you're trying to say your browser to send via the HTTP protocol a message on the network properly enveloped in a TCP/IP protocol message structure. When sending data, you can use POST or GET modes to send data using HTTP protocol. POST tells your browser to build an HTTP message and put all content in the header of the message ( a very useful way of doing things, more safe and also flexible). GET has some constraints about data representation and length.

When sending a file, it is necessary to tell HTTP protocol that you are sending a file having several characteristics and information inside it. In this way it is possible to consistently send data to receiver and let him open the file with the current format and so on... This is a requirement from the HTTP protocol as shown here

You cannot send files using default send enctype parameters because your receiver might encounter problems reading it (consider that a file is a descriptor for some data for a specific operating system, if you see things this way, maybe you'll understand why it is so important to specify a different enctype for files).

This way of doing things also ensures that some security algorithms work on your messages. This information is also used by application-level routers in order to act as good firewalls for external data.

Well, as you can see, it is not a stupid thing using a specific enctype for files.

share|improve this answer
1  
header of the message or body of the message? – manikanta Apr 4 at 12:52
The information about the enctype is part of the header. If you send a file, the body of the http message is the bytestream of the file. – Andry Apr 4 at 21:13

enctype='multipart/form-data is an encoding type that allows files to be sent through a POST. Quite simply, without this encoding the files cannot be sent through POST.

If you want to allow a user to upload a file via a form, you must use this enctype.

share|improve this answer

I will use enctype="multipart/form-data", when I need upload binary data.

share|improve this answer
I wouldn't state that the use of multipart/form-data is mutually exclusive to your data not being modified when xmitted to the post destination. – Mike McMahon Dec 6 '12 at 20:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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