|
You need to run a CGI script for a form to work.
<
form
>
<
/form
>
Creates a form.
<
select multiple name="NAME" size="?"
>
<
/select
>
Creates a scrolling menu. You can create a name and size sets the number of menu item visible before you teed to scroll.
<
option
>
Sets off each menu item.
<
textarea name="NAME" cols="#" rows="#"
>
<
/textarea
>
Creates a text box that allows you to type in it.
<
input type="checkbox" name="NAME"
>
Creates a checkbox.
|