我对 PHP 真的很陌生,并且有一些问题......
我一直在实现一个 PayPal 支付表单,代码如下:
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="lc" value="US"> <input type="hidden" name="rm" value="2">
<input type="hidden" name="shipping_1" value="<?php echo $shipping; ?>">
<input type="hidden" name="return" value="http://www.predragstevanovic.com/webprodavnica/index.php?view=thankyou"/>
<input type="hidden" name="cancel_return" value="predragstevanovic.com/webprodavnica/">
<input type="hidden" name="notify_url" value="predragstevanovic.com/webprodavnica/paypal.php"/>
<input type="submit" name="pay now" value="Plati" />
我的根目录是webprodavnica
,在这个目录里面我有:index.php
, db_fns.php
, cart_fns.php
,paypal.php
然后我有另一个目录views
,里面还有 2 个目录:layouts
withshop.php
和shop
with plati_kupovinu.php
,index.php
and thankyou.php
。
当我按下支付按钮时,我被卡住了,它转到了贝宝,当完成交易什么都不做时,我想将我重定向到我服务器上的thankyou.php 页面。我在本地托管这个,因为我找不到免费托管来测试这个应用程序......如果有人能推荐一个会很酷的。我也没有域,predragstevanovic.com
只是一个例子。
所以,发生的事情是用户点击支付按钮,然后将用户带到贝宝(他们离开我的页面),在那里他们完成了交易,但没有返回到我想要显示的页面thankyou.php
。
如果我想从我的服务器显示thankyou视图,如何编写代码?
谢谢