Tuesday 5 February 2013

Paypal Buy Now Button

Paypal Buy now Button


How to create paypal "paynow" html button.

To create a button you must have an paypal account in which money will transfer.

1) Login to paypal website

Paypal Login Form
Add caption

2) Click on "Merchant Services"
Merchant Services

3) Click on "Website Payment Standard"


4)Click on "Give it a try"


5) Fill few field and create button



6) Button is created

7) Want HTML Code
<form action="https://www.paypal.com/in/cgi-bin/webscr" method="post" name="_xclick"> 
<input name="cmd" type="hidden" value="_xclick" />
<input name="business" type="hidden" value="youremailaddress" />
<input name="currency_code" type="hidden" value="USD" />
<input name="item_name" type="hidden" value="Item Name" />
<input name="amount" type="hidden" value="5.00" />
<input alt="Make payments with PayPal - it's fast, free and secure!" border="0" name="submit" src="http://www.paypal.com/en_GB/i/btn/x-click-but01.gif" type="image" />
</form>