I am on a project using php and codeigniter framework. I want to make changes in the database every 3 months. The problem is I don’t know how to do it with PHP. I can activate a function when a user access a page, but I want it to be self-executed at certain date.
Share
You can code your script in PHP, and run it with CRON (provided you are hosting your application in a UNIX/LINUX environment).
Here is a WebSite explaining how to do your automated PHP execution with CRON.