
Information
The Basics
Text
Pictures
Spacing
Colors
Links
Alignment
Lists/Bullets
Tables
Frames
Multimedia
Forms
ISO Characters
Meta Tags
Contact Us

Email Support
Email Contact
|
 |
 |
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 |
|
|
Test Your HTML
|
|