Hi i'm trying to pass parameters to a php script called from command line
so i have a test.sh script that is like this
OUT=`php -q prova.php?P1=test`
echo $OUT
and a php script, prova.php,that is
...
$get = $P1;
.....
echo $get;
....
but something isn't working... what
ty 4 help