Code Comments
Programming Forum and web based access to our favorite programming groups.steve wrote: > PHP 4.3.8: $_SERVER[’argv’] does not return any values. Did not change > anything in php.ini. > > Any ideas. Running from command line (CLI), Win Apache. > ..Also tried to enable $argc, $argv parameters directly (via php.ini) > with no success either. > do not use the $_SERVER on CLI as this will not be filled like when you use a webserver. just use $argv[1] .. $argv[2] .. and so on. you should also consider taking a look at you string delimiters. the correct way to note an array variable is not with backticks but: $_SERVER['var'] or $_SERVER["var"] regards sh -- "The goal of Computer Science is to build something that will last at least until we've finished building it." -- unknown
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread
Powered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.