From: Andreas A. <a.a...@th...> - 2001-08-24 09:55:26
|
Hi Andris, > > The line $argv = $HTTP_SERVER_VARS["argv"]; should work only > > when the php file is executed by Apache? No, it's executed on the command line. No Webserver interaction. argv is just the parameter list: script.php one two three .. [0] = script.php [1] = one [2] = three ... Andi |