[PHP] Re: Running a PHP script on an automated regular schedule

2004-07-12 Thread Henry Grech-Cini
You may also want to look at wget as a way of invoking your PHP script if command line support is not available. Henry I.A. Gray [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi. I am wanting to use a PHP script to check on an hourly/daily basis on a few things- ie links on my

[PHP] Re: Running a PHP script on an automated regular schedule

2004-06-10 Thread Craig Donnelly
Best way to achieve this would be cron/crontab http://www.webmasters-central.com/t/cron.shtml HTH Craig I.A. Gray [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi. I am wanting to use a PHP script to check on an hourly/daily basis on a few things- ie links on my sites, whether

[PHP] Re: Running a PHP script on an automated regular schedule

2004-06-10 Thread Ben Ramsey
Craig Donnelly wrote: Best way to achieve this would be cron/crontab http://www.webmasters-central.com/t/cron.shtml Unless you're on Windows and don't have cron. Then, use scheduled tasks. The task would look something like this: c:\php\php.exe c:\path\to\script\to\schedule.php -- Regards,