A Form Example

For order forms all you do is post the form to our cgi program, like this.


BOOK SELECTION
 
Enter quantity desired  
Make a million on the internet $29.95
Real estate for pennies on the dollar $39.95
Buy automobiles for $1.00 $19.95
 

In this example there are 3 books with each at a different price. The html form command would look like this

<FORM METHOD=POST ACTION="http://www.globalcheck.com/cgi-bin/echeck.cgi"> 


The 'name' and 'value' pairs from your order form can be passed through the check form to a cgi of your choice. This is done by placing a name value pair called url=, with it being equal to the name of the cgi program to pass it to. Once the form is filled out and submitted the customer will be sent to the url address you listed in the 'url=' name value pair in the order form. One other requirement is having the mid=(your mid) name value pair in the form instead of on the url line. The mid= and url= name value pairs can be set up as hidden values as is the case in this form. To see, click 'view source' on your web browser.
In this example many of the check fields will already be filled in for you. Notice that with the url= name value pair set to the address of this page the check form will send you back here.
To see this work enter 1 in any of the book selections above and click 'Pay by check'
When the check form comes up enter 101 for the check number
Enter ANY BANK for the bank name
Enter 122000221 in the first space for the account number and 1234567890 in the second space for the account number.
Submit the check and it will bring you back here after the confirmation screen.