Paypal 如何在贝宝表单加密时覆盖它?

Paypal 如何在贝宝表单加密时覆盖它?,paypal,paypal-ipn,Paypal,Paypal Ipn,猛击 我在一个为账户收费的网站上工作,在沙箱环境中进行测试时,它是完美的。 我可以设置加密按钮并覆盖表单中的金额和用户ID吗 <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="custom" value="<?php echo $user_id; ?>">

猛击 我在一个为账户收费的网站上工作,在沙箱环境中进行测试时,它是完美的。 我可以设置加密按钮并覆盖表单中的金额和用户ID吗

 <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
        <input type="hidden" name="custom" value="<?php echo $user_id; ?>">                   
                  <input type="hidden" name="cmd" value="_xclick">
                  <input type="hidden" name="business" value="MY_Business_ACOUNT">
                  <input type="hidden" name="lc" value="US">
                  <input type="hidden" name="item_name" value="Subscribe for SMLE">
                  <input type="hidden" name="amount" value="<?php echo $sub_fees; ?>">
                  <input type="hidden" name="currency_code" value="USD">
                  <input type="hidden" name="button_subtype" value="services">
                  <input type="hidden" name="no_note" value="1">
                  <input type="hidden" name="no_shipping" value="1">
                  <input type="hidden" name="rm" value="1">
                  <input type="hidden" name="return" value="<?php echo base_url("ipn_success");?>">
                  <input type="hidden" name="cancel_return" value="<?php echo base_url("ipn_cancel");?>">
                  <input type="hidden" name="bn" value="PP-BuyNowBF:btn_buynowCC_LG.gif:NonHosted">
                  <input type="hidden" name="notify_url" value="<?php echo base_url("ipn");?>">
                  <input type="image" src="<?php echo base_url("assets/img/paypal.png"); ?>"
                    border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"
                    width = "400" height = "200"
                  >

  </form>


它说,
$errmsg
中有什么问题?我用$errmsg解决了这个问题,但我的问题仍然存在,如何使此表单安全?并更改自定义字段和金额字段的值!你已经移除了最重要的部分。问题仍然存在,我怎样才能使它安全?它的哪个方面不安全?在你的标题中,你是指“覆盖”吗?