We run our PHP server on Windows 2000. Right now I have a script that runs at like 4 in the morning on every Mon Wed and Fri. How I have this scripted right now is with a batch file that calls the script like so
start iexplore www.mysite.php. However, this PHP does not echo any html it just goes to another site and downloads a bunch of pdfs. After it is done, I have taskkill /f /im iexplore.exe (which forces internet explorer to close). Does anyone know of a way to call a php script without opening a web browser and still make it execute. If I type php thePathOfMyFile.php it just echoes a bunch of weird characters. Any ideas?