Send form-data encoded as "multipart/form-data":
![]()
The enctype attribute is supported in all major browsers.
The enctype attribute specifies how the form-data should be encoded when submitting it to the server.
Note: The enctype attribute can be used only if method="post".
NONE.
| Value | Description |
|---|---|
| application/x-www-form-urlencoded | Default. All characters are encoded before sent (spaces are converted to "+" symbols, and special characters are converted to ASCII HEX values) |
| multipart/form-data | No characters are encoded. This value is required when you are using forms that have a file upload control |
| text/plain | Spaces are converted to "+" symbols, but no special characters are encoded |
HTML <form> tag
Your message has been sent to W3Schools.