I would like to use PHP to pass two values (I get from a php form) into a perl script in order to process these. I am able to do this just fine with all characters but not the '>' sign, what can I do to repair this..?
This is my php code:
<?php
$val="$_POST['val']";
$val2="$_POST['val2']";
system("/usr/bin/perl script.pl $val $val2",$retval);
if($retval!=0){
echo ("<p> There was an unknown error.");
}
?>
Thanks!