> > > Maybe there is another way to handle this issue, and if I am talking > > > nonsense forget it :-) > > > > Not too bad idea. BTW we can also use ini_get() in scripts, > > and the like to customize the behaviour to the php.ini settings. > > Sure, but not possible with register_globals. Abd the current scripts rely > on this setting. > If register globals is off argc and argv ist not available. > > And in the future versions register_globals is off by default :-) > No big point, just wanna ask :-)
For register globals: import_request_variables(), or extract() can be used. BTW isn't argv and argc available in some $HTTP_anyhing_VARS array? Goba