that is exactly what I wasn't trying to do ... get the perl arguments. And that worked.
I found out that if I used the php script ...
passthru(/home/test.cgi $var);
and then the perl script (test.cgi)
$var = $ARGV[0];
print $var;
I would get the result that I needed.
thanks,
chris