Connected: An Internet Encyclopedia
8.1.2.7. Submit Button: INPUT TYPE=SUBMIT

Up: Connected: An Internet Encyclopedia
Up: Requests For Comments
Up: RFC 1866
Up: 8. Forms
Up: 8.1. Form Elements
Up: 8.1.2. Input Field: INPUT
Prev: 8.1.2.6. Hidden Field: INPUT TYPE=HIDDEN
Next: 8.1.2.8. Reset Button: INPUT TYPE=RESET

8.1.2.7. Submit Button: INPUT TYPE=SUBMIT

8.1.2.7. Submit Button: INPUT TYPE=SUBMIT

An <INPUT> element with `TYPE=SUBMIT' represents an input option, typically a button, that instructs the user agent to submit the form. Optional attributes are:

NAME
indicates that this element contributes a form field whose value is given by the VALUE attribute. If the NAME attribute is not present, this element does not contribute a form field.

VALUE
indicates a label for the input (button).

You may submit this request internally:

    <input type=submit name=recipient value=internal><br>

or to the external world:

    <input type=submit name=recipient value=world>


Next: 8.1.2.8. Reset Button: INPUT TYPE=RESET

Connected: An Internet Encyclopedia
8.1.2.7. Submit Button: INPUT TYPE=SUBMIT