execute a php file once per day
0 0 * * * /path/to/php /var/www/html/reset.php
but I have no idea how to run it or how to set it in place. can any one help (also is that bit of code that simple? simply include the path to my php and the script)?
p.s. sorry about the duplicate post, i did not intend for that to happen.
3 Replies
run PHP script using cron
@nehalem:
You need to set it up as a cron entry. See
for a bit more background. run PHP script using cron
excellent, thank you!