hello,
is there anyway of embedding php in c/c++ programs or calling php functions within c/c++ programs?
thanx in advance,
ravi
All you can do is execute the CGI version of php, such as :
php -q script.php > output.txt
(-q suppresses the headers). Once the process has finished, read the result file.