Title: Form Tags
URL: http://www.activejump.com/m-2.shtml
Email: webmaster@activejump.com

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