hello guys, im running script on mysql server with php, i have a quastion, how to schedule the job timing ? thanks,
Use a cron job. For example (in Cpanel) go to cron jobs, select the frequency of the command to run and type in: /usr/bin/php -q /home/name/public_html/script.php I don't know how your server is set up, but this works for me.
or, if you use cmd, type: crontab -e and type something like: 5 * * * * /usr/bin/php -q /home/name/public_html/script.php if you want your script to run every 5 minutes or 30 15 * * * /usr/bin/php -q /home/name/public_html/script.php if you want your script to run every day at 15:30