$handle = popen("cvs --help", "r");

while(!feof($handle)) {
       echo  fgets($handle, 30000);
}

pclose($handle);

i get a valid handle but no output ! popen failed only with cvs command
(cvs.exe), if anybody could help me :-)



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

Reply via email to