I am trying to write a PHP script that will process recurring payments every month, quarter, year, etc. This script will work as a Cron night task.
I donβt want to face a situation when someone signs up, say, on January 15th, and then again receives the bill on February 1st.
Is this what will happen if I make my last payment against INTERVAL 1 MONTH? Or will it be the same as INTERVAL 30 DAY and only process the payment again on February 15th, what do I want?
source share