I need to know what the equivalend of the SSI exec cmd command is in php. I've tried includes and all I recieve is raw code. I converted the page back to html and I was given errors with a separate php call within the page. What am I missing?
If you want to capture the output of an executable you can use exec() system() passthru() or escapeshellcmd() depending on what you want to do exactly.
http://www.php.net/manual/ref.exec.php
Brett