A form is contained within the HTML tags:
<FORM NAME="form1" ACTION="form_processing.php3" METHOD=GET>
...
</FORM>
Form parameters:
| NAME | Unique name used to refer to form |
| ACTION | Page which will process form e.g. mailto:email@address or "directory/myfile.php" |
| METHOD | GET - gets a page, passing the form data as parameters POST - sends the form's data |
Next topic: processing the form