Posted by NC on 07/09/07 20:15
On Jul 7, 7:46 pm, henry <henry.huil...@gmail.com> wrote:
>
> I'm running some scheduled php scripts on my laptop.
> The scripts are under my php504 directory and I use
> command "php ***.php" to excute the script. Whenever
> the script runs, a command window(titled "C:
> \windows\system32\svchost.exe") pops up. Now I need
> to run the scripts every one minute and it becomes
> annoying. Is there any way to suppress the pop-up
> window?
Yes. Instead of running this:
php.exe script.php
run this:
start /B php.exe -q script.php
Cheers,
NC
[Back to original message]
|