Posted by Daniel Klein on 12/22/07 15:02
I'm trying to get popen to work on Windows.
Here's a simplified example of what I'm trying to get working:
I have a hw.c program as follows:
#include <stdio.h>
main()
{
printf ("Hello World!\n");
}
And here's the 'popentest.php' code:
popen test...
<?php
$fp = popen('C:\\home\\bin\\hw.exe', 'r');
$data = fread($fp, 1024);
pclose($fp);
echo $data;
?>
It works when I run this from a command prompt:
C:\Inetpub\wwwroot\php>php popentest.php
popen test...
Hello World!
All I get in a web browser is:
popen test...
What am I missing?
Thanks
Daniel Klein
Navigation:
[Reply to this message]
|