Passing $_GET parameters to cron job
The $_GET[] & $_POST[] associative arrays are only initialized when your script is invoked via a web server. When invoked via the command line, parameters are passed in the $argv array, just like C. Contains an array of all the arguments passed to the script when running from the command line. Your command would be: … Read more