Leakbali
w3 Tutorial, Web Tutorial
Register   Login
Share

Submit Button 


<input type="submit" /> defines a submit button.

A submit button is used to send form data to a server. The data is sent to the page specified in the form's action attribute. The file defined in the action attribute usually does something with the received input:

<form name="input" action="html_form_action.php" method="get">
Username: <input type="text" name="user" />
<input type="submit" value="Submit" />
</form>

How the HTML code above looks in a browser:
Username:

If you type some characters in the text field above, and click the "Submit" button, the browser will send your input to a page called "html_form_action.php". The page will show you the received input.
More Tutorial
  1. HTML - Forms
  2. HTML - The Input Element
  3. HTML - Text Fields
  4. HTML - Password Fields
  5. HTML - Radio Buttons
  6. HTML - Checkboxes
  7. HTML - Submit Button
  8. HTML - Form Tags

References

About Us

Home
About Us
Contact Us
Sitemap

Tools

Google PageRank
Alexa Rank
Keywords Density

Accounts

Register Account
Login
Valid XHTML 1.0 TransitionalValid CSS!
Web Directory


2006 - 2012 © Leakbali.com - Free Web Tutorial, Free Web Articles, Web Sharing, Source Codes, Web References