previous | start | next

OPTION

<OPTION
SELECTED
VALUE=value>

Denotes one choice in a list box. In a SELECT block, denotes one of the choices that will appear in the list.

SELECTED
Indicates that this item is the default. If not present, the first item becomes the default.
VALUE=value
Indicates the value that will be returned if this item is chosen.

Example

<SELECT NAME="Cars" SIZE="1">
    <OPTION VALUE="1">BMW
    <OPTION VALUE="2">PORSCHE
    <OPTION VALUE="3" SELECTED>MERCEDES
</SELECT> 


previous | start | next