Hi,
I gotta play a little bit around with php in shell mode, as I have to write some cron jobs, which generate PDF repors overnight hope it will ever work 🙂) )
Thus, I need to pass some data to the script. lets say we have a lil script like this:
#!/usr/local/bin/php -q
<?php
echo "\n";
echo "Value of the $test:".$test;
echo "\n";
?>
How can I pass $test as parameter* to this script. I dont want to use ugly env-vars.
Thx