2011-11-10 13 views
1

私は、既存の非営利団体のウェブサイトに簡単にPayPalを統合する方法を探しています。私はPayPal(https://www.paypal-labs.com/integrationwizard/ecpaypal/code.php)で提供されている正確な手順に従ってみましたが、正常に動作していませんでした。たぶん私はページ間の主要なつながりを見逃しているかもしれませんが、私は無知です。PayPalと既存のウェブサイトとの統合

ヘルプ(チュートリアル、例、ステップバイステップのガイドラインなど)があれば幸いです。

よろしくお願いいたします。

+0

本当に詳細を入力する必要があります。何がうまくいきませんか?エラーメッセージはありますか?関係するステップの具体的な点について不明ですか? – psynnott

答えて

0

あなたがPHPを使用する場合は、PHP Payment Libraryを使用することができます。

設定が非常に簡単です:

HTML

<form method="post" action="payment/paypal_start.php"> 
    <input type="text" name="item_name" /> 
    <input type="text" name="amount"> 
    <input type="submit" /> 
</form> 

paypal_start.php

(スニペット1 - 合計6スニペット)

// Include the paypal library 
include_once ('Paypal.php'); 

// Create an instance of the paypal library 
$myPaypal = new Paypal(); 

// Specify your paypal email 
$myPaypal->addField('business', '[email protected]'); 

// Specify the currency 
$myPaypal->addField('currency_code', 'EUR'); 
... 
関連する問題