Hey guys, I need to be able to execute either a php or jquery function to update a sql database every certain segment of time, 20 minutes for example, regardless of user activity on the website. Does anyone know the easiest way to do this? Thanks, any help is appreciated.
|
feedback
|
|
The easiest way would be to make a PHP script that does the update, then use a CRON Job to run it every 20 minutes. | |||||
feedback
|
|
I guess you're looking for a cronjob on *nix (or "Scheduled Tasks" on Windows). | |||
|
feedback
|
|
Use a cron job that executes a php page:
Put your database update script in | |||
|
feedback
|
|
There is a solution but you have to have access to command line. But for information: You can make a php engine. So make a infinite loop while(true), inside use a sleep function and make the proper updates. | |||
|
feedback
|
|
I got it, on bluehost I just go to cronjobs and input the path to the php script, it worked great, thanks | |||
|
feedback
|