when i execute a batch file under windows nt with system(), exec () or something else. php waits since the batch file was entirely executed before it goes on in the php script. even if i send batch output to nul.
exec ( "xxx.bat 1>nul 2>nul " ) ;
is that a problem of windows?
i just wanted to execute batch file and then go in in the script!
any ideas???