Hi,
I am trying to run a .php page using the exec:
I have the two pages:
load.php:
        exec("E:\PHP\php.exe F:\WORK\Load\load1.php");
And load1.php:
        $f = fopen("F:\\WORK\\Load\\test.txt","w");
        fputs($f,"hola!");
        fclose($f);
However, it does not work as I expect too, around 30 instances of
php.exe are created, but without any result (appareanly load1.php is not
run).

If I try to exec notpad.exe it is ok (well, the notepad instance appears
only in taskmanager, I cannot see it).

Any suggestion on what am I doing wrong?
I am using W2K, with IIS and php 4.06.
Tnx,
Gabi


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to