<form method="POST" action="" enctype="">
Browser |
|
---|---|
Type |
The enctype attribute of the FORM element specifies the MIME type used to encode the form data.
<form method="POST" action="example.cgi" enctype="multipart/form-data"></form>
Attribute | Value | Explanation |
---|---|---|
enctype=" " | application/x-www-form-urlencoded | URLencode type (default) |
multipart/form-data | multipart type | |
text/plain | plain text type |
This attribute can be used when POST is specified for the method attribute.