How to automatically update a mysql table by a specific date using php?
Eg: Calculate loan interest by every 1st of the month and update relevant mysql table automatically without any user interaction. Is this possible using php?
How to automatically update mysql table through php?
Moderator: General Moderators
Re: How to automatically update mysql table through php?
Write the update script in PHP, schedule its execution in cron.
Re: How to automatically update mysql table through php?
thanks a lot for your quick reply. I'll check on that. I am totally new to cron jobs.Celauran wrote:Write the update script in PHP, schedule its execution in cron.