I would like to execute a couple custom shellscripts via PHP including passing values to and from the shellscript. Is this possible with PHP? Does anyone know how to do it.
Try with the exec function. exec(string shellscript);
http://www.php.net/exec
the backticks (the single quote leaning backward) also work:
$output = command argument1 argument2; echo $output;
command argument1 argument2