Can we call a C++ application with php ? How to call an application with php as vb ?
you can call an external program with the following functions:
exec system passthru
http://www.php.net/manual/en/ref.exec.php
if you want to load an aplication on the client side, perhaps you should consider using javascript ..
But we must so have Linux ? i have only Windows ..
If you want tight integration between PHP and your C++ code, you can also generate a PHP extension. There is doc for this (PHP3, can't seem to find the updated version) here:
http://www.php.net/manual/en/phpdevel.php#phpdevel-addfunc
Dave
=========================================== http://badblue.com Small footprint P2P web server for Windows,
must we have Linux
No, exec() et al work on Windows, too.