" id="payment-notify" /> " type="h-6ren">
gpt4 book ai didi

php - 我们可以通过在链接上传递订阅 ID 来取消订阅定期付款吗

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:47 24 4
gpt4 key购买 nike

<form name="myform" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<div id="other_element"></div>
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="business" value="<?php echo $adminpaypal; ?>">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="item_name" value="Monthly Subscription">
<input type="hidden" name="a3" value="5.00">
<input type="hidden" name="p3" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="src" value="1">
<input type="hidden" name="sra" value="1">
<input type="hidden" name="notify_url" value="<?php echo $paypal_notify; ?>" id="payment-notify" />
<!-- Display the payment button. -->
<input name="return" value="<?php echo $paypal_return; ?>" type="hidden">
<input type="image" src="" border="0" name="submit" alt="Make payments with PayPal - it's fast, free and secure!">
</form>

我已经创建了用于每月订阅的 Paypal 形式。订阅后,我得到“订阅 ID”。现在我正在制作取消订阅按钮。是否可以通过在链接上传递订阅 ID 来制作取消订阅按钮?

最佳答案

如果您使用subscription button creator 创建了订阅,那么您可以按照以下步骤操作。

当您转到已保存的按钮时,单击“操作”-->“查看代码”。在底部,在您的代码下方,有一个“创建取消订阅按钮”选项。

创建按钮并复制代码。将其粘贴到您的网络应用程序中。一切顺利。

这是带有隐藏值的按钮创建者代码---

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick"> //custom variable. You can access it like $_POST['cmd'] when you call listener (IPN)
<input type="hidden" name="hosted_button_id" value="*********">
<input type="hidden" name="custom" value="<?php echo $_SESSION['user']['id']; ?>">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_subscribeCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

这是取消订阅按钮的代码。当您创建取消订阅按钮时,它会生成相同的代码。只是 ****** 将被一些值取代。

<a HREF="https://www.paypal.com/cgi-bin/webscr?cmd=_subscr-find&alias=*******">
<img SRC="https://www.paypalobjects.com/en_US/i/btn/btn_unsubscribe_LG.gif" BORDER="0">
</a>

关于php - 我们可以通过在链接上传递订阅 ID 来取消订阅定期付款吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38989243/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com