1) { header("Location: http://".$_SERVER['HTTP_HOST']."/content.php?title=".$title); // Redirect browser exit; } } // }}} // {{{ Error else { // The user is lost. header("Location: http://".$_SERVER['HTTP_HOST']."/"); // Redirect browser exit; } // }}} // {{{ Output the retrieved content if (isset($item->content)) { // Display content. if ($item->type == "html") echo parseLinks($item->content); else eval($item->content); } else { // Empty header("Location: http://".$_SERVER['HTTP_HOST']."/"); // Redirect browser exit; } // }}} ?>