wordpress - I want payment in paypal with dynamic price entered by user -


i want payment in paypal dynamic price entered textbox in wordpress. can me?according user choices , price rate list,total price change , calaulated user.user enter amount in textbox paid in paypal.how this? did research on it.

you use code similar following, have text box buyer enter in amount. click button make payment , redirected on paypal amount.

<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post"> <!-- identify business can collect payments. --> <input type="hidden" name="business" value="my_site@my_site.com"> <!-- specify buy button. --> <input type="hidden" name="cmd" value="_xclick"> <!-- specify details item buyers purchase. --> <input type="hidden" name="item_name" value="hot sauce-12 oz. bottle"> <input type="hidden" name="currency_code" value="usd"> <input type="text" name="amount" maxlength="60"> <br /> <!-- display payment button. --> <input type="image" name="submit" border="0" src="https://www.paypal.com/en_us/i/btn/btn_buynow_lg.gif" alt="paypal - safer, easier way pay online"> <img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_us/i/scr/pixel.gif" > </form>  

Comments

Popular posts from this blog

linux - Does gcc have any options to add version info in ELF binary file? -

android - send complex objects as post php java -

charts - What graph/dashboard product is facebook using in Dashboard: PUE & WUE -