Title: Hidden Field
URL: http://www.activejump.com/m-4.shtml
Email: webmaster@activejump.com

Introduction

Hidden fields do not show up on web pages. Their only purpose is to provide the CGI script with more information than the other fields can provide alone.
Hidden Field
The tag to put a hidden field on your web site is <INPUT TYPE="HIDDEN" NAME="X" VALUE="Y">. X is replaced with the name of the field. Y is replaced with the initial value of the field. The initial value is what it sent to the CGI script.

index.html - Notepad
....<BODY>

<FORM METHOD="POST" ACTION="script.cgi">

<INPUT TYPE="HIDDEN" NAME="form1" VALUE="site">

</FORM>

</BODY>....

My Homepage - Microsoft Internet Explorer