How do you create a .bat file that runs a file every hour? eg.
I want 'php_json.php' to run every hour (60 min) to collect new data. I heard that this was possible with batch-files.
This .bat file will be uploaded to a SQL server, and will not be able to run on a local machine.
@echo off
:loop_label
C:\PHP5\php.exe -f "c:\php_json.php"
PING -n 3600 127.0.0.1 >NUL 2>&1
goto :loop_label
?