JavaScript Coder

html form submit

The HTML Form Submit Button

The basics of an HTML form submit button is discussed first in this article, moving towards more advanced topics like multiple submit buttons. The code below creates a form submit button: <input type="submit" name="mysubmit" value="Click!" /> name: specifies the identification assigned to this submit button. value: is the label that appears on the button. Identifying the submit button on the server side The name and value of the button that is pressed to submit the form is passed to the server side script.

Continue Reading →