
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
All forms have mandatory tags, which mark off the form, specify how the information is treated, and specify the CGI script that the
information will be sent to. In this section you will learn the tags that let you do this.
Mandatory Tags
All forms are marked off by two mandatory tags, which are the starting and closing tags. The starting tag looks like
<FORM METHOD="XXX" ACTION="URL"> and the closing tag is </FORM>. XXX is replaced with either GET or POST,
depending on how your CGI script is programmed. URL is replaced with the internet address of the CGI script you want
to use.
|
index.html - Notepad |
....<BODY>
<FORM METHOD="POST" ACTION="script.cgi"></FORM>
</BODY>....
|
|
|
My Homepage - Microsoft Internet Explorer |
|
|
Test Your HTML
|
|