I am wondering if the following can be accomplished with PHP. Lets say that you have simple scripts which only insert some records into database (lets say some reporting) e.g. money incomes/withdraws.
And every 13th day in a month, you have some regular payment for electricity, mortgage etc. Is it possible, that PHP on 13th day every month at 00:00:01 AM perform some insert action.
In addition, is it possible that this is performed without even logging/using the application (without user interaction)? Is there a way how ensure that such action will be definately performed only once a month?
Thank you