| <form>
. . . </form>
<input>
<textarea> . . .
</textarea>
<option>
|
Indicates a form
action = " . . . " The URL of the
script to process
this form input
method = " . . . " How the form input will be sent
to the script on the server
side.
Possible values are get and
post.
enctype = " . . . " Only one value right now:
application/x-www-form-urlencoded.
An input widget for a form
type = " . . . " The type for this
input
widget. Possible values are
checkbox, hidden,
radio, reset, submit, text,
or image.
name = " . . . " The name of this item, as passed
to the
gateway script as part of
a name/value pair.
value = " . . . " For a text or hidden widget, the
default
value; for a checkbox or radio
button, the value to be
submitted with the form; for
Reset or Submit buttons,
the label for the button
itself.
src = " . . . " The source file for an image
checked For checkboxes and radio buttons,
indicates that the widget
is checked
size = " . . . " The size, in characters, of a text
widget
maxlength = " . . . " The maximum number of
characters that can be entered
into a text widget
align = " . . . ". For images in forms, determines
how the
text and image will align
(same as with the <img> tag)
Indicates a multiline text entry widget
name = " . . . " The name to be
passed to the gateway
script as part of the name/value
pair
size = " . . . " The number of elements to display
multiple Allows multiple selections from the list
Indicates an item within a <select>
widget
selected With this attribute included, the
<option> will be selected
by default in the list
value = " . . . " The value to submit if this <option>
is selected when the form
is submitted
|