|
Forms
|
| <form>...</form> |
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. Values are GET & POST |
|
enctype="..."
|
Only one value right now:
application/x-www-form-urlencoded |
| <input> |
An input widget for a form |
|
type-"..."
|
The type for the input widget. Values are
CHECKBOX HIDDEN RADIO RESET SUBMIT TEXT IMAGE |
|
name="..."
|
The name of this item as passed to the gateway
script as part of the 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 |
|
maxlenght="..."
|
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) |
| <textarea>...</textarea> |
Indicates a multiline text entry widget |
|
name="..."
|
The name to be passed to the gateway script as
part of the name/value pair |
|
rows="..."
|
The number of rows this text area
displays |
|
cols="..."
|
The number of columns this text area displays |
| <select>...</select> |
Creates a menu or scrolling list of possible
items |
|
name="..."
|
The name that is passed to the CGI script as
part of the name/value pair |
|
size="..."
|
The number of elements to display |
|
multiple
|
Allows multiple selections from the list |
|
<option>
|
Indicates an item within a <select>
widget |
|
selected
|
With this attribute included, the
<option> will be selected by default in the list |
|
value="..."
|
The option to submit if this <option> is
selected when the form is submitted |