Web Page Setup
----------------------
All you need to do is include the following lines of HTML code before the HTML
tags used for the products:
<form method="post" action="/cgi-bin/shopcart.cgi">
replace the /cgi-bin/shopcart.cgi element with your own information if different.
ie. ../shopcart/cgi/shopcart.cgi
If using SSL be sure to include the entire url.
ie. https://www.metromkt.net/shopcart/cgi/shopcart.cgi
Add this tag for the continue shopping funtion: add the url page in value=" ".
<input type="hidden" name="page" value="http://www.metromkt.net/scripts/cart/demo/">
Next you will need to format your products using the following example:
<INPUT TYPE="hidden" NAME="multi" VALUE="1">
<INPUT TYPE=HIDDEN NAME=item VALUE="T00155">
<INPUT TYPE=HIDDEN NAME=dollar VALUE="15.99">
<INPUT TYPE=HIDDEN NAME=descript VALUE="Eyes wide Shut">
<INPUT TYPE=text NAME=qty size=4 VALUE="1">
<INPUT TYPE="submit" NAME="order" VALUE="Order">
Finally, you will need the following elements to complete the form:
<form method="post" action="/scripts/cart/cgi/shopcart.cgi">
<INPUT TYPE="hidden" NAME="page" VALUE="http://www.metromkt.net/scripts/cart/demo/">
<INPUT TYPE=submit NAME="viewcart" VALUE="View Cart">
</form>
<form method="post" action="/scripts/cart/cgi/shopcart.cgi?order">
<INPUT TYPE="hidden" NAME="page" VALUE="http://www.metromkt.net/scripts/cart/demo/">
<INPUT TYPE=submit NAME="checkout" VALUE="Checkout">
</form>
The end result should look like this:
Web Page Setup v4.0
----------------------
Include the following new ***** Multiple variables: ***** lines of HTML code before
the HTML tags used for the products:
<form method="post" action="/cgi-bin/shopcart.cgi">
replace the /cgi-bin/shopcart.cgi element with your own information if different.
ie. ../shopcart/cgi/shopcart.cgi
If using SSL be sure to include the entire url.
ie. https://www.metroscripts.com/scripts/cart/cgi/shopcart.cgi
<input type="hidden" name="page" value="http://www.metroscripts.com/scripts/cart/demo/">
<INPUT TYPE="hidden" NAME="multi" VALUE="1">
Next you will need to format your products using the following example:
<INPUT TYPE=HIDDEN NAME=item VALUE="MM0125">
<INPUT TYPE=HIDDEN NAME=dollar VALUE="50.00">
<SELECT NAME=qty>
<OPTION value="1">1
<OPTION value="2">2
<OPTION value="3">3
<OPTION value="4">4
<OPTION value="5">5
</SELECT>
<SELECT NAME=descript>
<OPTION value="Gift Basket and Fruits">Gift Basket and Fruits
<OPTION value="Gift Basket and Chocolates">Gift Basket and Chocolates
</SELECT>
<INPUT TYPE=SUBMIT NAME="order" VALUE="Order">
</FORM>
Finally, you will need the following elements to complete the form:
<form method="post" action="/cgi-bin/shopcart.cgi">
<INPUT TYPE="hidden" NAME="page" VALUE="http://www.metromkt.net/ccart4/webpager.html">
<INPUT TYPE=submit NAME="viewcart" VALUE="View Cart">
<INPUT TYPE=submit NAME="checkout" VALUE="Checkout">
</form>
these elements must be exact - the script is case sensitive.
The end result should look like this:
Please visit our DEMO
and look at the source!