如何使用PayPal事务捕获表单信息

时间:2014-12-15 01:23:01

标签: paypal

我提供反向链接构建服务,我想在我的网站上提供一个简单的表单,用户可以在其中输入:

  • 他们希望我排名的网站
  • 他们想要排名的1-2个关键词

然后是一个简单的PayPal按钮,指示他们付钱的地方。

有没有人有任何资源可以指示我在购买后获取这些信息,甚至可能是他们的PayPal电子邮件?

是否有任何人都知道的插件或代码我只能使用表单字段进行滑动和修改?

我知道这必须是可能的我只是不知道要在Google中输入什么来获取更多信息。

提前致谢。

1 个答案:

答案 0 :(得分:0)

基本上有两个参数让我想到你可以使用custom& no_note custom是一个参数,可用于收集Website they want me to rank信息以及您可以使用no_note的关键字(但这必须由买方在PayPal结帐页面中输入。您可以使用`custom& #39;参数附加信息然后付款。

示例表单代码:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="XXX@gmail.com">
<input type="hidden" name="item_name" value="test">
<input type="hidden" name="amount" value="1.00">
<input type="hidden" name="custom" value="website_rank+keywords">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="paymentaction" value="sale">
<input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_buynow_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
  • 现在,买家完成后如何获取此信息 付款?

使用Instant Payment notification。并查看可以找回的IPN variables