Doing Something with the Data
The user-entered form data must be processed by the server
This requires a Common Gateway Interface (CGI) script
For example, at www.keller.com there is a simple CGI script named reflectform.cgi that generates a list of the form fields and their contents
Point to the CGI script by adding the ACTION attribute to your <FORM> tag, e.g.
<FORM ACTION="http://www.keller.com/reflectform.cgi">
How CGI scripts work
Lab
Add the ACTION attribute to your FORM tag as above.
Fill in your form and submit it.