As of version 4, GLOBALS are explicitly turned off... for security reasons. You really shouldn't turn then on, either, via php.ini. Instead... you should reference them directly e.g. $_SESSION['variable_name'] Or if you really want to short hand them... $variable_name = $_SESSION['variable_name'] This might introduce more coding, but in the long run, it's much safer. Larr.