Third-Party Shopping Carts - The Cart Upload Command
Minimum and Maximum Denominations for Buy Gift Certificate Buttons
HTML for Passing Individual Item Detail to PayPalSpecify the required variables and any optional variables listed in Allowable Values for the cmd HTML Variable." Append _ x to the variable name, where x is the item number, starting with 1 and increasing by one for each item added to the cart. The first item in the cart must be defined with variables ending in _1, like item_name_1, amount_1, and quantity_1; the second item with variables like item_name_2, amount_2, and quantity_2; the third item with variables like item_name_3, amount_3, and quantity_3; and so on.
Important: The _ x values must increment by one continuously in order to be recognized. If you skip from item #1 to item #3 without defining an item #2, the third item will be ignored.
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_cart">
<input type="hidden" name="upload" value="1">
<input type="hidden" name="business" value="info@capleswebdev.com">
<input type="hidden" name="item_name_1" value="Item Name 1">
<input type="hidden" name="amount_1" value="1.00">
<input type="hidden" name="item_name_2" value="Item Name 2">
<input type="hidden" name="amount_2" value="2.00">
<input type="submit" value="PayPal">
</form>
info@capleswebdev.com
