0
I am making a web server using Beaglebone black, I would like to know how to receive a variable on the web server and access it locally in a C program on Beaglebone .
0
I am making a web server using Beaglebone black, I would like to know how to receive a variable on the web server and access it locally in a C program on Beaglebone .
Browser other questions tagged php c webserver
You are not signed in. Login or sign up in order to post.
You may have misinterpreted your question by that one comment, but you can try to use the functions system or exec and with them call via PHP your C program something like
exec("d:/programa.exe $valor1 $valor2", $output); print_r($output);
– SK15
If you’re wearing it CGI, your program receives values through the Environment.
– pmg