我已在AAA Shuttles网站上实施了付款按钮代码。客户希望使用自动重定向功能,以便在付款完成后,用户应在5-20秒后重定向到我们的网站,而无需点击"返回AAA班车"链接。
我已经实现了自动返回功能,但它无法正常工作。这就是我所做的;请看看并指导我最好的解决方案:
然后为我的paypal按钮添加代码,例如:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post"/>
<!-- <form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post"/> -->
<input type="hidden" name="cmd" value="_cart"/>
<input type="hidden" name="upload" value="1"/>
<input type="hidden" name="business" value="clientemail@aaashuttles.com.au"/>
<input type="hidden" name="item_name_1" value="<?php echo $itemname;?> TransactionId Is <?php echo $transactionid;?>"/>
<input type="hidden" name="amount_1" value="<?php echo $amount;?>"/>
<input type="hidden" name="currency_code" value="AUD"/>
<input type="hidden" name="return" value="<?php echo SITE_URL.'/paypalpaymentsuccess.php?transactionIds='.$booking_id; ?>&Agentid=<?php echo $agentcode;?>"/>
<input type="text" name="bookingtype" value="<?php echo $directions; ?>"/> -->
<input type="hidden" name="cancel_return" value="<?php echo SITE_URL.'/paypalpaymentfailed.php? transactionIds ='.$get_booking_ids.'"etype='.$get_booking_type.' '; ?>"/>
<input type="hidden" name="notify_url" value="<?php echo SITE_URL.'/ transactionConfirmed.php;?>"/>
<input type="hidden" name="rm" value="2">
<input type="submit" class="submit_right" value="Proceed to payment"/>
</form>
点击此链接后,我有一个页面,其中包含以下消息:
Thanks for your order
Thanks for your order
Your payment of $4.00 AUD is complete.
If you are not redirected within 10 seconds, .
PayPal. The safer, easier way to pay.
For more information, read our User Agreement and Privacy Policy. Test Site
最后,在10秒后,页面被重定向到我们的页面。
但我不想点击步骤7中提到的重定向链接(&#34;返回arjunsign@gmail.com"),我需要使用自动返回功能而不点击给定的链接在第7步。
请给我一些关于我错的地方的建议和指导。