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<!-- ~MESSAGE_AFTER~ -->
>> Stay informed about: PHP 4.3.8: $_SERVER['argv'] missing