我如何显示 PayPal 捐赠者列表?

How I can show PayPal donators list?

我使用该代码在我的网站上添加了一个 PayPal 捐赠按钮

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">

<input type="hidden" name="business" value="pro-email@gmail.com">
<input type="hidden" name="cmd" value="_donations">
<input type="hidden" name="item_name" value="Donation">
<input type="hidden" name="item_number" value="Donation"> 
<select name="amount"><option value="2.00">.00</option><option value="5.00">.00</option><option value="10.00">.00</option></select>
<input type="hidden" name="currency_code" value="EUR">
<input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_donate_LG.gif" alt="PayPal - The safer, easier way to pay online">
</form>

我想在有人付款后在我的网站上添加并显示捐赠者的姓名或电子邮件,其中包含 $$ 金额。我该怎么做?

我会使用 PayPal Instant Payment Notification (IPN) 进行设置。

它会自动 POST 将有关交易的数据发送到您服务器上的侦听器脚本。该脚本可以接收数据并将其加载到名为 "donors" 的数据库 table 或任何您想调用的数据库中。

然后在您的站点上,您可以简单地从捐赠者那里提取数据 table 并相应地显示出来。

由于您使用的是 WordPress,我建议您查看此 PayPal IPN for WordPress plugin. It's free and it will get you up and running with IPN very quickly. It logs all of the IPN data in WordPress and allows you to easily extend the plugin using a number of hooks 以根据不同的 IPN 类型或付款状态触发事件。