TJMAudio Posted August 8, 2006 Share Posted August 8, 2006 How would I go about accepting a credit card payment for $5.99, and giving someone 1 year's worth of access? How would I check to verify the year is up when it is?Thanks :) Link to comment https://forums.phpfreaks.com/topic/16876-recurring-payments/ Share on other sites More sharing options...
xyn Posted August 8, 2006 Share Posted August 8, 2006 Paypal? Link to comment https://forums.phpfreaks.com/topic/16876-recurring-payments/#findComment-71048 Share on other sites More sharing options...
TJMAudio Posted August 8, 2006 Author Share Posted August 8, 2006 [quote author=xyn link=topic=103388.msg411624#msg411624 date=1155032775]Paypal?[/quote]No. Link to comment https://forums.phpfreaks.com/topic/16876-recurring-payments/#findComment-71076 Share on other sites More sharing options...
king arthur Posted August 8, 2006 Share Posted August 8, 2006 Work out what the date will be one year from now (or one year from the time they sign up). Store that in the database. Then every time they log in, check to see if today's date is greater than the time you stored in the database. If it is, their subscription has run out. Link to comment https://forums.phpfreaks.com/topic/16876-recurring-payments/#findComment-71080 Share on other sites More sharing options...
ToonMariner Posted August 8, 2006 Share Posted August 8, 2006 I would simply record the date they subscribed and set up a cron job to run once a day that would:a, if the current day is one week away from expiry of subscription, notify the user by email that they will be biled in 7 days time if they don't unsubscribe.b, if they have not unsubscribed and the subscription date is a year passed then bill them once more.Beauty of this is u set it up and never have to bother again until something crashes... Link to comment https://forums.phpfreaks.com/topic/16876-recurring-payments/#findComment-71085 Share on other sites More sharing options...
TJMAudio Posted August 8, 2006 Author Share Posted August 8, 2006 What are the best methods of accepting payment, besides PayPal? Link to comment https://forums.phpfreaks.com/topic/16876-recurring-payments/#findComment-71280 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.