Could some one explain me how to run a C program from a php script and store console output of the C program to a php variable?
My program prints an integer value on the console using C printf() function. I want to read this value and store it in a php variable.
I am using linux. I tried exec but it doesn't display the variable value once echoed to the page
This the code snippet I am using.
exec("Release/matchface image1.jpg image2.jpg", $output);
while( list(,$row) = each($output) ) {
echo $row. "<br />";
}