-1

私はphpで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>
4

1 に答える 1

0

自分のサイトでカードを処理するには、ここにリストされている Pro または Braintree オプションのいずれかを使用する必要があります。

于 2016-04-07T20:42:09.027 に答える