0

We have advertisers module where advertisers can place ads in to the site. When user clicks ad, system should automatically sends money to site admin account and users account.

Notes: . Assume each ad cost $10, need to distribute $5 each. . Assume system has user and site admin credit/debit cards info.

My questions 1) How can I achieve it? 2) I want to achieve it through php. is there any issues?

Thanks Venu

Venu
  • 7,243
  • 4
  • 39
  • 54

3 Answers3

1
  1. You will have to use some payment gateway to actually "post" a financial transaction. Paypal, or others;

  2. Php is way mature now, and I believe you can do that in php.

Community
  • 1
  • 1
KMån
  • 9,896
  • 2
  • 31
  • 41
  • Yes I have worked on paypal. By question is can I transfer an amount from merchant payal account to credit card using paypal api? – Venu Apr 13 '11 at 06:37
  • You can to transfer *from* merchant account, **to** credit card?? – KMån Apr 15 '11 at 06:14
0

You can do this through Authorize.net with minimal coding skills.

elbrian87
  • 5
  • 2
0

You can use either Express Checkout Parallel payments to send $5 to each recipient's PayPal account, or PayPal Adaptive Chained / Parallel payments. The difference is that Express Checkout doesn't offer chained payments. You cannot, however, automatically transfer these funds from a PayPal account to a credit card and/or bank account.

Have a look at https://www.x.com/ for documentation (I can't post more than two links..).

Robert
  • 19,326
  • 3
  • 58
  • 59
  • Thanks to your prompt reply. I want a way to send money to credit card/debit card. Is it possible through authorize.net at least? – Venu Apr 18 '11 at 06:14
  • But Client don't want to force the users to have Paypal Account. – Venu Apr 20 '11 at 07:41
  • I got answer for this through another question.http://stackoverflow.com/questions/5754863/credit-card-crediting-and-debiting-ach-crediting-and-debiting-through-api-witho – Venu Apr 29 '11 at 12:10