This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
This chapter describes the different attributes for the HTML
element.In the example below, the form data is sent to a file called "action_page.php". This file contains a server-side script that handles the form data:
On submit, send form data to "action_page.php":
<form action="/action_page.php"> <label for="fname">First name:</label><br> <input type="text" id="fname" name="fname" value="John"><br> <label for="lname">Last name:</label><br> <input type="text" id="lname" name="lname" value="Doe"><br><br> <input type="submit" value="Submit"> </form>
Tip: If the action attribute is omitted, the action is set to the current page.
The target attribute specifies where to display the response that is received after submitting the form.
The target attribute can have one of the following values:
Value | Description |
---|---|
_blank | The response is displayed in a new window or tab |
_self | The response is displayed in the current window |
_parent | The response is displayed in the parent frame |
_top | The response is displayed in the full body of the window |
framename | The response is displayed in a named iframe |
The default value is
which means that the response will open in the current window.Here, the submitted result will open in a new browser tab:
<form action="/action_page.php" target="_blank">
This example uses the GET method when submitting the form data:
<form action="/action_page.php" method="get">
This example uses the POST method when submitting the form data:
<form action="/action_page.php" method="post">
Tip: Always use POST if the form data contains sensitive or personal information!
The
attribute specifies whether a form should have autocomplete on or off. When autocomplete is on, the browser automatically complete values based on values that the user has entered before.A form with autocomplete on:
<form action="/action_page.php" autocomplete="on">
The
attribute is a boolean attribute. When present, it specifies that the form-data (input) should not be validated when submitted.A form with a novalidate attribute:
<form action="/action_page.php" novalidate>
Attribute | Description |
---|---|
accept-charset | Specifies the character encodings used for form submission |
action | Specifies where to send the form-data when a form is submitted |
autocomplete | Specifies whether a form should have autocomplete on or off |
enctype | Specifies how the form-data should be encoded when submitting it to the server (only for method="post") |
method | Specifies the HTTP method to use when sending form-data |
name | Specifies the name of the form |
novalidate | Specifies that the form should not be validated when submitted |
rel | Specifies the relationship between a linked resource and the current document |
target | Specifies where to display the response that is received after submitting the form |