>>Far simpler is to do this at the top of the script than to change all >>instances of your variables.: >> >> $_SESSION = $HTTP_SESSION_VARS; I'd go with: $_SESSION = &$HTTP_SESSION_VARS; This way if you change something in one of them you won't get two distinct copies of the variable. H