You'll need a browser which supports HTML forms for these examples. You might want to look at the CGI program source.
The original Web form analyzer was taken from http://www.halcyon.com/sanford/cgi/cgi-tour.html#summary and modified slightly.
To use scripts in your cgi-bin (on dmapub) replace rhawes with your login name. You can test your forms by referring to `/cgi-bin/cgiwrap/rhawes/form-test' in your document.
Clicking the submit button will send a form request with no extra path information using the GET method. (<FORM ACTION="/cgi-bin/cgiwrap/rhawes/form-test" METHOD=get>)
Clicking the submit button will send an form request with no extra path information using the POST method. (<FORM ACTION="/cgi-bin/cgiwrap/rhawes/form-test" METHOD=POST>)
Clicking the submit button will send an form request with extra path information of /foo using the POST method. (<FORM ACTION="/cgi-bin/cgiwrap/rhawes/form-test/foo" METHOD=POST>)