I want to call a php script inside shell script and need to send 4 parameters.I called that called that inside shellscript like this.
php /var/www/php/myscript.php $var1 $var2 $var3 $var4
but php script didn't execute. so what is the correct way to send parameters to php script and execute script inside shellscript?