Differences between application/x-www-form-urlencoded and multipart/form-data-PHP Tutorial-php Tutorial

Source: Internet
Author: User
The differences between applicationx-www-form-urlencoded and multipartform-data are analyzed. In the Form element syntax, EncType indicates the encoding type used by the browser when the data is sent back to the server using the Enctype attribute. Below is the description: applicatio in the Form element syntax, EncType indicates the format of the submitted data

Use the Enctype attribute to specify the encoding type used by the browser when data is sent back to the server.

Below is the description:

Application/x-www-form-urlencoded: form data is encoded as name/value pairs. This is the standard encoding format.

Multipart/form-data: The form data is encoded as a message. each control on the page corresponds to a part of the message.

Text/plain: the form data is encoded in plain text format, which does not contain any controls or format characters.

Supplement

The enctype attribute of form is encoded in two ways: application/x-www-form-urlencoded and multipart/form-data, the default value is application/x-www-form-urlencoded.

When the action is get, the browser uses the x-www-form-urlencoded encoding method to convert form data into a string (name1 = value1 & name2 = value2 ...), then append the string to the end of the url, using? Load the new url.

When the action is post, the browser encapsulates form data into the http body and sends it to the server.

If there is no type = file control, use the default application/x-www-form-urlencoded.

However, if type = file exists, you need to use multipart/form-data. The browser splits the entire form into controls and adds Content-Disposition (form-data or file) and Content-Type (text/plain by default) to each part), name (control name) and other information, plus the delimiter (boundary ).

Use the Enctype attribute to specify the encoding type used by the browser when data is sent back to the server. Below is the description: applicatio...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.