我的贝宝即时通讯使用“ store_success.php”作为我的返回网址,在我的php中,它只是将结帐页面中的用户信息存储到数据库中。
现在,每当我尝试沙盒且付款成功时,我都单击“返回商家”,但按钮只是变成灰色,什么也没发生。
ive尝试删除php echo
并将其自身链接到成功的php,但仍然没有任何反应。
随意尝试一下。我不知道我的代码或Paypal是否有问题。
我的结帐php脚本是
// PayPal settings
$paypal_email = 'me@gmail.com';
$return_url = 'https://clout-cloud.com/success.php';
$cancel_url = 'https://clout-cloud.com/index.php';
$notify_url = 'https://clout-cloud.com/payments.php';
<input type='hidden' name='cancel_return' value='<?php echo $cancel_url; ?>'>
<input type='hidden' name='return' value='<?php echo $return_url; ?>'>