Set up online payments for a website

I am a web designer, but I have not set up online payments before. I am using a Linux server with php and MySQL. I have a new contract to create a very simple site where people can buy one of three different products (very simple). I want them to be able to pay using credit / debit cards. My question is, can someone point me to a good resource page for setting this up?

I donโ€™t think that I should install an open source solution such as Opencart, Zencart or Presta, because there are only three products to choose from, and users do not need to register, just buy them online. so I think the best way is to pass the code, but I'm sure it has been done many times before, and there must be a good resource for this. I know that I will have to use a secure certificate, and also use a gateway to process payments, I just need information on how to do this. If someone can point me in the right direction or offer any advice on setting it up, I would appreciate it.

+3
source share
4 answers

- PayPal - , - PayPal , -, .

. ( , 3,4% + )

, , . . (, )

, ( )

+5

, . , API Paypal, Google Checkout, Authorize.net . Opencart, Magento Presta , , , . , . , , ( ) .

-, , . , .

+5

-, - -.

-, , , - paypal. , -, API, ; .

, . , -, .

+1

To sell only one of three different products, you can try the Buy Now button or a simple shopping cart. You still need an online payment processor such as PayPal or Google Checkout to comply with all government credit card rules (such as PCI compliance).

For examples of basket integration for PHP using Goolge Checkout, you may find this sample code useful:

http://code.google.com/p/google-checkout-php-sample-code/

Hope this helps ...

0
source

All Articles