You have basically two ways to add a "View Shopping Cart" link to your store.
The first method is to use a standard form tag. This can be used under most circumstances but can lead to alignments problems. Here is an example:
<FORM
METHOD="POST" ACTION="http://www.myshopcart.com/cart/shop.cgi">Merchant_Name">
This is what the code above would look like:
|
You can also use an image in place of the plain View Shopping Cart button.
<FORM
METHOD="POST" ACTION="http://www.myshopcart.com/cart/shop.cgi">Merchant_Name"><INPUT ALIGN="middle" TYPE="image"
NAME="view_cart" SRC="http://www.your-domain.com/image.gif">
This is what the code above would look like: |
The second method is to use a image and a link. And example of this would look like:
<a
href="http://www.myshopcart.com/cart/shop.cgi?merchant=Merchant_Name&view_cart=yes">http://www.your-domain.com/image.gif"
border="0"></a>
This is what the code above would look like: |
You can also just add a text link. An example of this would look like:
<a
href="http://www.myshopcart.com/cart/shop.cgi?merchant=Merchant_Name&view_cart=yes"></a>
This is what the code above would look like: |