我需要將此代碼粘貼到管理面板,然後在網站上顯示Paypal按鈕。如何在其他PHP代碼中將PHP代碼顯示爲字符串
<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");
現在的問題是,貝寶的形式裏面,由於PHP代碼,每當我試圖在網站上打印上述值(PayPal按鈕),它給的,因爲裏面另一個PHP代碼PHP代碼錯誤。
這顯示整個PayPal按鈕代碼串,不喜歡按鈕,使買家可以點擊。 – KRA 2013-02-10 10:37:35