Forms are used to allow the user to send us information. The form communicates with the server through a CGI (Common Gateway Interface) script. Forms send along name/value pairs of information.
Forms start with the <form> tag and its attributes; method and action.
method can have two values; GET or post. This example uses the post method.action indicates the URL of the CGI script you are working with.The code used for this form is:
<form method="post" action="http://art.wallyzone.com/cgi-bin/namevalue.cgi">
Remember to close your form after all your form elements - </form>.
Below are some of the form elements. Go ahead and fill them out for fun.
Lets move on to exercise ten.