How to auto pay members commissions with pay-pal? PHP, MYSQL.?

  • Thread starter Thread starter alanjaldred
  • Start date Start date
A

alanjaldred

Guest
Okay, so the final leg of my site is for my members to be able to click a button, and then via pay-pal, claim the money they are owed. I am looking for a similar routine to the payment buttons where you create the form with the hidden fields with the correct variables. I would like to do something similar for paying on demand. So for example I am looking for something like

{
echo"
<form>
<input type='hidden' name='reciever' value='". $user_email ."'>
<input type="hidden" name="amount" value='". $commision ."'>
<input type='submit'>
</form>
";
}

That's the kind of thing i am looking for anyway. Any help, or a link to the appropriate article would be great!. I have the necessary account types and pass for an API key.

I preferably only want to use pay-pal, but can fall back to nochex. I am mainly using php and MySQL.

Thank you
 
Back
Top