The formenctype Attribute
The formenctype Attribute
//send form-data that is default encoded (the first submit button),
//and encoded as "multipart/form-data" (the second submit button):
<form action="/action_page_binary.asp" method="post">
First name: <input type="text" name="fname"><br>
<input type="submit" value="Submit">
<input type="submit" formenctype="multipart/form-data"
value="Submit as Multipart/form-data">
</form>
Semantic portal