php - How to protect user edit paypal button ? -
php - How to protect user edit paypal button ? -
how protect user edit paypal button ?
this paypal purchase button on site
<form name="_xclick" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="me@mybusiness.com"> <input type="hidden" name="currency_code" value="usd"> <input type="hidden" name="item_name" value="teddy bear"> <input type="hidden" name="amount" value="12.99"> <input type="image" src="http://www.paypalobjects.com/en_us/i/btn/btn_buynow_lg.gif" border="0" name="submit" alt="make payments paypal - it's fast, free , secure!"> </form>
my client edit paypal button currency_code
, amount
i want know , how can protect user edit paypal button ?
log paypal business relationship , utilize button tool create saved button. saved button replaces of sensitive info in button code "hosted button id. here illustration of hosted button code:
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> <input type="hidden" name="cmd" value="_s-xclick"> <input type="hidden" name="hosted_button_id" value="l7nsnlbnu69ac"> <input type="image" src="https://www.paypalobjects.com/en_us/i/btn/btn_paynowcc_lg.gif" border="0" name="submit" alt="paypal - safer, easier way pay online!"> <img alt="" border="0" src="https://www.paypalobjects.com/en_us/i/scr/pixel.gif" width="1" height="1"> </form>
php paypal
Comments
Post a Comment