I have a perl script that executes a php script:
my $phpOutput = `/usr/bin/php /bart/bart.php`;
this works perfectly fine. now i want to add some variables to the url.
my $phpOutput = `/usr/bin/php /bart/bart.php?data=1`;
this fails.
Could not open input file: /bart/bart.php?data=1
any ideas why?