-1, 'lead_email' => 'INVALID@EMAIL' ); // Is the cookie set? if (isSessionVariableSet('lead_userid')) { // Is the user-account unlocked and valid? if (fetchUserData(getSession('lead_userid'))) { // Secure the id number $content['lead_userid'] = bigintval(getSession('lead_userid')); // Load the email address $content['lead_email'] = getUserData('email'); } else { // Not found! $content['lead_userid'] = '0'; } } else { // Maybe spider? $content['lead_email'] = getConfig('WEBMASTER'); } // Load the lead template loadTemplate('lead_code', false, $content); // Footer loadIncludeOnce('inc/footer.php'); // [EOF] ?>