What does enctype multipart form-data mean

0 votes
What does enctype='multipart/form-data' mean in an HTML form and when should we use it?
Feb 10, 2022 in Others by Soham
• 9,700 points
862 views

1 answer to this question.

0 votes

When any POST request is made, then you have to encode the data that forms the body of the request in some way.The HTML forms give us three methods of encoding which are:-

  • application/x-www-form-urlencoded (the default)

  • multipart/form-data

  • text/plain


I was working on adding application/json, but that has been discontinued, however, other encodings are possible with HTTP requests which are generated using other means than an HTML form submission. The JSON is a common format for use with web services and some still use the SOAP version. The specifics of the formats don't matter to most developers. The main disclaimers are:
 

  • Never use text/plain.
     

Once you are writing client-side code:

  • use multipart/form-data when your form includes any <input type="file"> elements

  • you can also use multipart/form-data or application/x-www-form-urlencoded but application/x-www-form-urlencoded will be more efficient


When you are writing server-side code:

  • Use a prewritten form handling library

Most of them for example Perl's CGI->param or the one exposed by PHP's

$_POST superglobal will take care of the differences for you. Don't bother trying to parse the raw input received by the server.


If you are debugging a library for parsing or generating the raw data, then you need to start worrying about the format. You might also want to know about it for interest's sake.

application/x-www-form-urlencoded is more or less the same as a query string on the end of the URL.

multipart/form-data is significantly more complicated but it allows entire files to be included in the data.

answered Feb 10, 2022 by Rahul
• 9,670 points

Related Questions In Others

0 votes
1 answer

What does "collect2: error: ld returned 1 exit status" mean?

 The ld returned 1 exit status error ...READ MORE

answered Feb 22, 2022 in Others by Aditya
• 7,680 points
78,972 views
0 votes
1 answer

What does it mean when owner is None on an AWS S3 object?

S3 Object Ownership is an Amazon S3 ...READ MORE

answered Mar 15, 2022 in Others by gaurav
• 23,260 points
1,166 views
0 votes
0 answers

What does "int 21h" mean in Assembly?

What does the command int 21h mean?  For example: mov ...READ MORE

May 24, 2022 in Others by Kichu
• 19,050 points
510 views
0 votes
0 answers

what does bash: /home/XXX/.rvm/scripts/rvm: No such file or directory mean?

I was installing the ruby on rails ...READ MORE

May 26, 2022 in Others by Ashwini
• 5,430 points
642 views
0 votes
1 answer

How blockchain hides it's HTML source?

When you click View Source, you see ...READ MORE

answered Jul 17, 2018 in Blockchain by Shashank
• 10,400 points
949 views
0 votes
2 answers

Define a SQL query? What is the difference between SELECT and UPDATE Query? How do you use SQL in SAS?

HI.. SQL is Structured Query Language, which is ...READ MORE

answered Aug 8, 2020 in PHP by anonymous
9,666 views
0 votes
1 answer

Vertically centering text in a div

Try this code: .smallUnitBox { ...READ MORE

answered Sep 3, 2018 in Blockchain by digger
• 26,740 points
592 views
0 votes
1 answer

Using Post and Get for Embedded System Communication

Twitter would be a great place to ...READ MORE

answered Sep 4, 2018 in IoT (Internet of Things) by anonymous2
• 4,280 points
554 views
0 votes
1 answer

can somebody explain me what does "passing by value" and "Passing by reference" mean in C#?

To answer your question, “passing by value” ...READ MORE

answered Feb 10, 2022 in Others by Rahul
• 9,670 points
600 views
0 votes
1 answer

Can't bind to 'formGroup' since it isn't a known property of 'form'

In order to rectify this error, you ...READ MORE

answered Feb 10, 2022 in Others by Rahul
• 9,670 points
18,781 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP