Amailer wrote:
Hey, anyone know what is hte 'new' way for PHP 5 to use HTTP_GET_VARS and etc? is it _GET (like php4)?
The long array names ('register_long_arrays' in the php.ini) is set to Off by default for PHP 5.0.x. This is talking about $HTTP_GET_VARS and related HTTP array variables. You can set it to On, or use the shorter versions ($_GET, $_POST, $_ENV, $_SERVER, etc.). It's recommended that you use the shorter versions, not only because it will increase performance, but also because they are visible from within your function definitions; the longer ones aren't.