0
私はPHPのpaypal統合ゲートウェイで働いています。私はgoogleからいくつかのチュートリアルを取った。今私はpaypalのようないくつかのクレジットカードオプションを追加したい(ビザ、マスターカードなど)。親切にどのようにここで 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="[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>
PayPals側ではすべて処理されますが、その処理は一切行いません – cmorrissey
しかし、私たちの側ではどのようにビザカードオプションを追加するのですか? –