Web Development: HTML & Css
Web Development: HTML & Css
Shermeen Adnan
HTML forms
• The <form> Element
– The HTML <form> element defines a form that is used to collect user input:
• <form>
.
form elements
.
</form>
Last name: <input type="text" name="lname" form="form1">
HTML Input Attributes
• The formaction Attribute
– The formaction attribute specifies the URL of a file that will process
the input control when the form is submitted.
– The formaction attribute overrides the action attribute of
the <form> element.
– The formaction attribute is used with type="submit" , type="image“
and <button>.
– Example
– An HTML form with two submit buttons, with different actions:
• <form action="/action_page.php">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<input type="submit" value="Submit"><br>
<input type="submit" formaction="/action_page2.php"
value="Submit as admin">
</form>
HTML Input Attributes
• Why would you want that?
– Since the formaction attribute is attached to
the submission button, you could use it with
multiple buttons to specify several different form
submission URLs.
HTML Input Attributes
• The formenctype Attribute
– The formenctype attribute specifies how the form data should be
encoded when submitted (only for forms with method="post").
– The formenctype attribute overrides the enctype attribute of
the <form> element.
– The formenctype attribute is used
with type="submit" and type="image".
– Example
– 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>