| The advanced buy
button page examples show how to add additional
functionality to your shopping carts buy buttons.
Please remember that each button requires a BASIC framework.
The HTML below is the BASIC framework to ANY button.
Use this framework as a reference when adding buttons by
hand in your HTML. Change USERNAME in the first line
to your carts ID name provided during your account setup.
Then change the price and desc value tags to your items
parameters and you are set.
<form
action="http://www.cartscience.com/cgi-bin/USERNAME/cart_login.cgi"
method="post">
<input type="hidden" name="price" value="5.00">
<input type="hidden" name="desc" value="ITEM
NAME GOES HERE">
<!-- ADDITIONAL CART FUNCTIONS GO HERE -->
<input type="submit" name="submit" value="BUY"> </form><!-- Cart powered by
CartScience.com --> |
|