> var_dump($HTTP_SERVER_VARS); > var_dump($HTTP_POST_VARS); > var_dump($HTTP_GET_VARS); > var_dump($HTTP_COOKIE_VARS); > var_dump($HTTP_ENV_VARS); > > since 4.1.0 these are deprecated. Use > $_SERVER, $_POST, $_GET, $_COOKIE, $_ENV
They are not deprecated. They will still work. $_* are slightly different in that they are auto-globals just like $GLOBALS. An auto-global does not need to be declared global inside a function. -Rasmus -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]