unidox Posted July 2, 2009 Share Posted July 2, 2009 I was wondering how I create a dynamic paypal subscription. I have a database that include the paypal email, price, subscription term (monthly, yearly, ect). I cant figure out how to create a button where it creates a subscription so people can order a service from my site. Thanks for any help Link to comment https://forums.phpfreaks.com/topic/164545-dynamic-button/ Share on other sites More sharing options...
drisate Posted July 2, 2009 Share Posted July 2, 2009 The best way to keep control over your stuff is to use the paypal IPN script http://www.tutorialhero.com/click-40811-easy_payments_using_paypal_ipn.php as for the button you just change the vars <input type="hidden" name="cmd" value="_xclick"> <input type="hidden" name="business" value="[email protected]"> <input type="hidden" name="quantity" value="1"> <input type="hidden" name="item_name" value="Item1-1"> <input type="hidden" name="amount" value="35.00"> <input type="hidden" name="shipping" value="2.99"> <input type="hidden" name="custom" value=""> <input type="hidden" name="return" value="http://your-web-domain.com/thanks-payment.htm"> <input type="submit" value="Purchase" onmouseover="this.className='buttonon-order'" onmouseout="this.className='button-order'" class="button-order"> Link to comment https://forums.phpfreaks.com/topic/164545-dynamic-button/#findComment-867932 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.