When building HTML forms why do we not always use enctype="multipart/form-data"?
When building HTML forms why do we not always use enctype=multipart/form-data ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
multipart/form-datais a lot bulkier thanapplication/x-www-form-urlencoded; the latter is just a bunch of keys and values (and can be parsed the same way whether forGETorPOST), whereas the former requires full MIME support, and is thus more useful when you have data that can’t simply be represented as key/value pairs.