How do I put payment button on my website where I offer some service,So that client can pay through his creditcard?
Consider using PayPal.. They provide button code generator. Fill in your requirement, and generate the code to be embedded on to your website.
Agreed, PayPal is probably the quickest way to do this. Here's their sample code: Here is sample code for a Buy Now button. You can modify the values in this code for your application. <form action="https://www.paypal.com/cgi-bin/webscr" method="post"> <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="sample@sample.com"> <input type="hidden" name="item_name" value="Item Name Goes Here"> <input type="hidden" name="item_number" value="Item Number Goes Here"> <input type="hidden" name="amount" value="100.00"> <input type="hidden" name="no_shipping" value="2"> <input type="hidden" name="no_note" value="1"> <input type="hidden" name="currency_code" value="USD"> <input type="hidden" name="bn" value="IC_Sample"> <input type="image" src="https://www.paypal.com/ en_US/i/btn/x-click-but23.gif" name="submit" alt="Make payments with payPal - it's fast, free and secure!"> <img alt="" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1"> </form> HTML: Hope this helps Cvent