提交 Paypal 表单时的变量

发布于 2024-12-07 01:39:12 字数 346 浏览 1 评论 0原文

<form>
    <!--- paypal form --->
</form>

提交时如何通过paypal发送数据?

例如:

  1. 提交 #ID 值为“12345”的表单后 并在付款成功后。

  2. 它将返回我的网站ThankYou.php

问题:我如何获得值12345? 或者我可以使用

//ThankYou.php
<?php
echo $_REQUEST["#ID"];
?>

提前谢谢!

<form>
    <!--- paypal form --->
</form>

How to send data thru paypal when submitting?

For example:

  1. Upon submitting the form with an #ID value of "12345"
    and after paying successfully.

  2. It will return back to my site ThankYou.php

Question: how will I get the value 12345?
or can I use

//ThankYou.php
<?php
echo $_REQUEST["#ID"];
?>

Thanks in advance!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自我难过 2024-12-14 01:39:12

PayPal 允许您发布自定义值。您应该能够在表单上放置一个隐藏的表单字段值,以便在返回时返回。他们的文档包含所有这些信息。

这可能有效:

<input type="hidden" name="custom" value="Id value" />

PayPal allows you to post custom values. You should be able to put a hidden form field value on your form that will make the trip back on return. Their documentation has all that information.

This may work:

<input type="hidden" name="custom" value="Id value" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文