


The fields of the form are defined by one or more <input> elements. Each
<input> element defines a single field which may be edited by the user.
The submitted contents of the form logically consist of name/value pairs. The
names are usually equal to the NAME attributes of the various interactive elements in the form.
Note: The names are not guaranteed to be unique keys, nor are the names of form
elements required to be distinct. The values encode the user's input to the
corresponding interactive elements. Elements capable of displaying a textual or
numerical value will return a name/value pair even when they receive no explicit
user input.
ACTION
If both method=xch_cmd and the MD5 value are specified, then this attribute may be specified to override the
command sent to the world when the form is submitted.
method=xch_cmd is a Pueblo enhancement that sends the form data to the world server. For
more detailed information on how this method works together with the ACTION attribute and the MD5 attribute, see the document
This attribute is used only when method=xch_cmd is specified.
<p>Please answer the following questions:
<ol>
<li>Name: <input type=text size=40 name=Name>
<li>How did you hear about our product? (check all that apply):<br>
<input type=checkbox name=Source value=Newspaper>Newspaper
<input type=checkbox name=Source value=Radio>Radio
<input type=checkbox name=Source value=TV>TV
<input type=checkbox name=Source value=Person>Friend/colleague
<li>How many would you like to order? <input type="number" name="Quantity"
size=4 value=1>
<input type=radio name=CC value=Visa checked>Visa
<input type=radio name=CC value=Mastercard>Mastercard
<li>Number: <input type=number name=CCNum size=16>
and expiration date (mm/yy): <input type=text name=Expiration size=5>
</ol>
<input type=submit value=" Send this form ">
<input type=reset value=" Reset all values and start over ">
</p>
</form>
<form>...</form>