set('k4_user_agreement', $null); } function &get($key) { return val_or($_SESSION, $key); } function set($key, &$value) { $_SESSION[$key] = &$value; } function clear() { # Note: DONT unset the $_SESSION variable with unset($_SESSION); # See this: http://php.net/manual/function.session-unset.php session_unset(); } } ?>