submitting multiple items to paypal cart at once with php

前端 未结 2 850
萌比男神i
萌比男神i 2020-12-28 08:48

I have some items for sale that have 2 and 3 levels of customization. Once set the user adds them to my onsite cart. Problem is, how can i send each item to paypal on checko

相关标签:
2条回答
  • 2020-12-28 09:29

    Why don't you send the total amount your client has to pay to PayPal?

    0 讨论(0)
  • 2020-12-28 09:41

    Here is the solution

    <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="email@email.com">
    <input type="hidden" name="item_name_1" value="Item #1">
    <input type="hidden" name="amount_1" value="1.00">
    <input type="hidden" name="item_name_2" value="Item #2">
    <input type="hidden" name="amount_2" value="2.00">
    <input type="submit" value="PayPal">
    </form> 
    
    0 讨论(0)
提交回复
热议问题