I was just wondering if there was to create a script that allows you to insert a timer that delays payment for a certain amount of days for each customer before transfering to a merchant account.
i am using a mysql database to keep track of customers and after 30 days, their information will be sent to a merchant account to process their payment.
From the sounds of it, you need to look into cron jobs. What this will do is run a script every set amount of time (for what you need, once a day should be fine). You can then run a query against the database, and check the dates...
Bookmarks