PHP:如何在paypal中添加信用卡方式选项?

时间:2016-04-07 17:38:30

标签: php paypal credit-card mastercard

我一直在使用php中的paypal集成网关。我从谷歌那里学到了一些教程。现在我想通过paypal添加一些信用卡选项(如签证,万事达卡等)。请指导我如何在php中添加此功能

这是简单的html表单

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">

    <!-- Identify your business so that you can collect the payments. -->
    <input type="hidden" name="business" value="businesstest541@shop.com">

    <!-- Specify a Buy Now button. -->
    <input type="hidden" name="cmd" value="_xclick">

    <!-- Specify details about the item that buyers will purchase. -->
    <input type="hidden" name="item_name" value="Hot Sauce-12oz Bottle">
    <input type="hidden" name="amount" value="5.95">
    <input type="hidden" name="currency_code" value="USD">

    <!-- Display the payment button. -->
    <input type="image" name="submit" border="0"
           src="https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif"
           alt="PayPal - The safer, easier way to pay online">
    <img alt="" border="0" width="1" height="1"
         src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" >
    </form>

1 个答案:

答案 0 :(得分:0)

要在您自己的网站上处理卡片,您需要使用here列出的Pro或Braintree选项之一。