"_POST", "HTTP_GET_VARS" => "_GET", "HTTP_COOKIE_VARS" => "_COOKIE", "HTTP_SERVER_VARS" => "_SERVER", "HTTP_ENV_VARS" => "_ENV", "HTTP_SESSION_VARS" => "_SESSION", "HTTP_POST_FILES " => "_REQUEST"); reset($old2newArray); while (list($old, $new) = each($old2newArray)) { if (!isset($$old) && isset($$new)) $$old = $$new; if (isset($$old)) { reset($$old); while (list($key, $value) = each($$old)) $GLOBALS[$key] = $value; } } ?>