PHP100 2019-03-27
代码如下:
if(!defined("_f_afficherButtonPayPal")) { define("_f_afficherButtonPayPal",1); function afficherButtonPayPal($nbr_point,$montant) { echo"<td width=\"50\"> </td>"; echo "<td> <form action=\"https://www.sandbox.paypal.com/cgi-bin/webscr\" method=\"post\" target=\"_blank\"> <input type=\"hidden\" name=\"cmd\" value=\"_xclick\"> <input type=\"hidden\" name=\"business\" value=\"[email protected]\"> //这个是刚才建立的seller的账号 <input type=\"hidden\" name=\"item_name\" value=\"$nbr_point points\"> <input type=\"hidden\" name=\"currency_code\" value=\"EUR\"> //付款的币种,我写的是欧元 <input type=\"hidden\" name=\"amount\" value=\"$montant\"> // 快速付款的总金额 <input type=\"image\" src=\"../src/img/x-click-but01.gif\" name=\"submit\" alt=\"Veuillez vous payer par PayPal\"> //显示的paypal图片 </form> </td>"; } }
代码如下:
<form name="paypay_form" action="https://www.paypal.com/cgi-bin/webscr" method="post"><!--提交的地址--> <input type="image" src="Styles/Compact/Images/payicon.jpg"></p><!--按钮的图片--> <input type="hidden" value="[email protected]" name="business"></p><!--收款账户--> <input type="hidden" value="Products" name="item_name"></p><!--付款详细内容--> <input type="hidden" value="dweeww" name="item_number"></p><!--付款详细内容--> <input type="hidden" value="http://www.xxx.xxx" name="return"></p><!--返回地址--> <input type="hidden" value="150.0" name="amount"></p><!--金额--> <input type="hidden" name="currency_code" value="USD"><!--货币--> </form>