9. FormsThis page describes:
Types of FormsIf you've spent much time on the web, you have seen and used HTML forms. Some common uses of HTML forms include:
Almost all forms gather information. Some forms use the browser's email to send information to one or more recipients, while other forms use a webserver's email to send information. For anything more complicated than sending a simple email from a browser, most webmasters use CGI (common gateway interface) scripts to process the input. Form TagThe form tag has two key attributes: Method and Action. <FORM Method="how_to_send" Action="URL_of_script">
Method = either POST or GET - POST is most popular and compatible Action = the name of the script used to process the data from the form - it needs to include the path (URL) of the script
Start with: ...form data...
Some Examples of Form Elements
|