I have done a a bash script which run php script. It works fine without parameters but when I add parameters (id and url), there are some errors:
PHP Deprecated: Comments starting with '#' are deprecated in /etc/php5/cli/conf .d/mcrypt.ini on line 1 in Unknown on line 0
Could not open input file: /var/www/dev/dbinsert/script/automatisation.php? id=1
I run php script from the bash like this:
php /var/www/dev/dbinsert/script/automatisation.php?id=19&url=http://bkjbezjnkelnkz.com
Call it as:
Also, modify your PHP script to use parse_str():
If the index
$_SERVER['REMOTE_ADDR']isn’t set.More advanced handling may need getopt(), but parse_str() is a quick’n’dirty way to get it working.