|
|
Forms Quick Reference
<FORM Method="GET|POST" Action="URL"
>
</FORM>
|
a Form with a CGI program at URL
|
|---|
<INPUT
Name="name" Type="
text |
hidden |
password |
image |
submit |
reset |
checkbox |
radio ">
|
Input widget with symbolic name, name
|
<TEXTAREA
Name="name" Rows="R" Cols="C">
|
Text area (lines of editable text) with symbolic name, name and R rows and C columns visible at a time.
|
<SELECT
Name="name" [Size="N"] [Multiple]>
|
Select element with symbolic name, name,
N selections visible at a time;
multiple selections possible;
selections defined using OPTION
|
<OPTION Value="string"> text
|
Option element used with SELECT;
with returned value string or text if not provided.
|
|
|