我需要在管理面板上粘贴此代码,然后在网站上显示Paypal Button。
<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="6UKjJ8hU6ML5f">
<input type="hidden" name="custom" value="<?php print($_SESSION['mid'].'-'.$_SESSION['mps']);?>">
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
然后,需要使用以下代码在网站上显示此代码。
print $rs->fields("ppbutton");
现在,问题是由于Paypal表单中的PHP代码,每当我尝试在网站上打印上面的值(paypal按钮)时,由于其他PHP代码中的PHP代码,它会给出错误。
答案 0 :(得分:3)
我也认为,打印htmlentities($ rs-&gt; fields(“ppbutton”));
是您的最佳选择。
您可以从此网站获取有关该功能的最新更新。
答案 1 :(得分:0)
print htmlentities($rs->fields("ppbutton"));