This guys has a website (www.whatever.com) and a paypal (uk) business account and wants to add a simple "shopping cart" and uses paypal for payments.
That shopping cart has the following text boxes and a button:
<input type="text" name="txtQuantity" maxlength="3">
<input type="text" name="txtPrice" disabled=true>
<input type="submit" value = "Buy">
If the quantity is 2 or more, the customer get a 10% discount. My question is how do I use these values (quantity, description, and price) to send and pay this guy?
I don't know how paypay works. I'm still reading through their website and I think I saw somewhere where they say I can use simple html or api to do this.
That shopping cart has the following text boxes and a button:
<input type="text" name="txtQuantity" maxlength="3">
<input type="text" name="txtPrice" disabled=true>
<input type="submit" value = "Buy">
If the quantity is 2 or more, the customer get a 10% discount. My question is how do I use these values (quantity, description, and price) to send and pay this guy?
I don't know how paypay works. I'm still reading through their website and I think I saw somewhere where they say I can use simple html or api to do this.