Reputation: 85
I am newbie to the php and mysql.. I have been trying to update my mysql automatically after the set time has passed ..With my program I needs to check the time with the current time everyday and if the time passes then it should update my database. Is there a way to do this using mysql and php ?.. thanks
Upvotes: 0
Views: 284
Reputation: 5714
you need some mechanism to check time has passed cron
for example. With cron
you can run your script daily for example
Upvotes: 2