If I'm calling a script from the command line, and I want it to use a variable I supply, how do I get that variable to it?
For instance:
myscript.php
echo "Hello $name";
I want to call it from the command line, and pass the name into it:
php myscript.php ???????