PHP:PayPal 与 Credits 集成

PHP: PayPal Integration with Credits

我有这个:

<form method="post" action="paypal.php">
            <label for="type">How?</label><br />
            <select name="type">
                <option value="pp">PayPal</option>
            </select><br />

            <label for="amount">How much?</label>
            <input type="number" step="any" id="amount" name="amount" placeholder="50.00" />
            <br />
            <input type="submit" value="Buy credits" name="charge" />
 </form>

我希望用户能够使用 PayPal 购买积分。

50 美元 = 50 个积分。

但我不知道该怎么做。你能帮我吗?如果付款被确认,用户应该收到他所支付的确切数量的积分。

当我打开一个页面 ("confirmed.php") 时,我不知道用户是否真的支付了 50 美元而不仅仅是 5 美元。要向用户帐户添加积分,只需执行

addCredits($amount);

你能给我发一个 link 或 PHP 代码吗?

看看 PayPal API。特别是这个:https://github.com/paypal/codesamples-php/blob/master/Merchant/sample/code/DoDirectPayment.php#L80。 这样您就会收到有关付款的通知。这也是添加学分的地方。