INPUT TYPE="radio" | specifies that the type of input is a radio button. |
NAME= | specifies the name of the variable to be returned to you. Note that each button has the same name, because they are the same variable which will contain one of three user specified values. |
VALUE= | is the value returned to the variable(NAME) if that button is selected. |
CHECKED | is an optional pre-checked button. |
INPUT TYPE="checkbox" | specifies that the type of input is a checkbox. |
NAME= | specifies the name of the variable to be returned to you. Note that unlike in radio buttons, each variable has a different name, because they are different variables |
VALUE= | is the value returned to the variable(NAME) if that checkbox is ticked. Note that each value is the same -"YES" because each variable will contain either a "YES" or nothing. |
CHECKED | is an optional pre-ticked checkbox. |
NAME="WORKBAG_DIARY" | VALUE="YES" |
NAME="WORKBAG_LUNCHBOX" | VALUE="YES" |
NAME="WORKBAG_PEN" | VALUE="YES" |
NAME="FRIDGE_DIARY" | VALUE="YES" |
NAME="FRIDGE_LUNCHBOX" | VALUE="YES" |
NAME="FRIDGE_PEN" | VALUE="YES" |
<FORM> <TEXTAREA NAME="COMMENTS" > </TEXTAREA> </FORM> |
<TEXTAREA NAME="COMMENTS" COLS=50 ROWS=5> |
And then there is the option of having text wrap or not. Soft text wrap (WRAP="soft") is where the text wraps but is returned in the form all in one line |
Hard text wrap (WRAP="hard") is basically the same as soft
wrap, but the text is returned in the form with text wrap. Then there is WRAP="off", which means the text will not wrap, but continue endlessly in one line. |
<FORM> <INPUT TYPE="submit"> </FORM> |
<FORM> <INPUT TYPE="reset"> </FORM> |