


Hidden fields allow you to send data to the CGI program without showing that data to the user.
<INPUT TYPE="HIDDEN" NAME="name" VALUE="value">
where:
| TYPE
| specifies that this should be a hidden field.
|
| NAME
| assigns a name to the field.
|
| VALUE
| assigns the value that will be sent to the CGI program. |