2016-04-07 56 views
0

我一直在使用php中的paypal集成網關。我已經從谷歌採取了一些教程。現在我想通過paypal添加一些信用卡選項,如(簽證,萬事達卡等)。請指導我如何在PHPPHP:如何在PayPal中添加信用卡方法選項?

這裏添加此功能是簡單的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="businesst[email protected]"> 

    <!-- 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> 
+0

這是所有在PayPal方面處理你不做任何類型的處理 – cmorrissey

+0

但如何在我們這邊添加簽證卡選項.. –

回答

0

爲了處理自己的網站上牌,你需要使用的Pro或布倫特裏選項之一列出了here

相關問題