I have REGISTER_GLOBALS set to off and i have a local variable with the same name as a session variable. For example, i have a local variable $username and a session variable $_SESSION['username'] and when i assign the local variable $username a value, the session variable $_SESSION['username'] is also getting assigned this value. Does anyone know why this could be happening?