Horje
How to create HTML Name Attribute for <input>

Notice that each input field must have a name attribute to be submitted.

If the name attribute is omitted, the value of the input field will not be sent at all.


Example of HTML Name Attribute for <input>

This example will not submit the value of the "First name" input field:
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<h2>The name Attribute</h2>

<form action="/action_page.php">
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" value="John"><br><br>
  <input type="submit" value="Submit">
</form> 

<p>If you click the "Submit" button, the form-data will be sent to a page called "/action_page.php".</p>

<p>Notice that the value of the "First name" field will not be submitted, because the input element does not have a name attribute.</p>

</body>
</html>

Output should be:

Example of HTML Name Attribute for <input>





Related Articles
What is HTML Forms HTML Forms
What is The <form> Element HTML Forms
What is The <input> Element HTML Forms
What is Text Fields HTML Forms
What is The HTML <label> Element HTML Forms
How to add HTML Radio Buttons HTML Forms
How to create HTML Checkboxes HTML Forms
How to create HTML Submit Button HTML Forms
How to create HTML Name Attribute for <input> HTML Forms
What is HTML Form Attributes HTML Forms

Single Articles
Example of HTML Name Attribute for <input>HTML Forms

Read Full:
HTML Forms
Category:
Web Tutorial
Sub Category:
HTML Forms
Uploaded:
9 months ago
Uploaded by:
Admin
Views:
7
Ref on:
View



Share on: