Heya,
I wanna execute a script in the background.
exec('/usr/local/bin/php /www/htdocs/test/test.php?string=test1 > /www/htdocs/test/test.html &');
test.php just consists of a var named $string, however the exec command does not pass the value "test1" for $string like it does with http GET-vars.
I need some values passed to the test.php-script which should be processed in the background.
any ideas?