hi
i want to start a php programm from commandline and pass some parameters to
the programm. but the programm did not recognize the parameters.
the commandline ist: php liste.php para1=one para2=two
the source (list.php)
....
echo $_request[para1];
echo $_request[para2];
....
why does this not work?
i want to start a php programm from commandline and pass some parameters to
the programm. but the programm did not recognize the parameters.
the commandline ist: php liste.php para1=one para2=two
the source (list.php)
....
echo $_request[para1];
echo $_request[para2];
....
why does this not work?
Comment