Hello Forum,
I have a small problem. I want to execute a perl Script via PHP. I try it with system ('cgi-bin/test.pl');
No problem, it works. But now I want to give the perl script some arguments. e.g.
test.pl?name=Schultz&age=12
I tried it as follows:
system('cgi-bin/test.pl name=Schultz&age=12');
It doesn´t work. Why??? The scripts needs the variables.
Does anyone why it is not working????
Thanks
Ronny