-1

我需要将此代码粘贴到管理面板,然后在网站上显示 Paypal 按钮。

<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 代码,它会给出错误。

4

2 回答 2

3

我也认为,打印 htmlentities($rs->fields("ppbutton"));

是您的最佳选择。

您可以从此站点获取有关该功能的最新更新。

http://php.net/manual/en/function.htmlentities.php

于 2013-02-10T10:42:01.697 回答
0
print htmlentities($rs->fields("ppbutton"));
于 2013-02-10T10:35:03.803 回答