// This code is copyrighted material owned by W. D. Bricker, doing business
// as US-Webmasters.com. Copyright 1998-2004 - All rights reserved.
//
// A single license for this code has been granted to
// US-Webmasters.com
//
// for use on site(s):
// US-Webmasters.com and related sites
//
// No other rights are implied nor shall be inferred. This code may
// not be altered, copied or distributed without express permission.
// Violation of these rights will necessitate legal remedial action.
// We'll need access to the Global Variables:
include_once("$DOCUMENT_ROOT/include/GlobalVars.php");
// We will be accessing all sorts of functions:
include_once("$DOCUMENT_ROOT/include/Functs.php");
// Check to see if the visitor (USER_AGENT) is a spider. If not:
// then do a "session_start"...
// Creates a session or resumes the current one
// based on the current session id that's being passed via a
// request, such as GET, POST, or a COOKIE.
// It's necessary that this be the first PHP command in the file.
If (!ItsASpider())
{
session_start();
// Sets various session variables like ReferringURL and EntryURL
// if they haven't already been set
include_once("$DOCUMENT_ROOT/include/SetSessionVars.php");
}
// This turns on Output Buffering. This seems to be
// necessary because we may be redirecting to a "Thank You" page
// after they submit the form. Speeds things up because
// browser doesn't reload when hitting BACK button.
ob_start();
$PageNameStr="Links";
$PageTitleStr="Links:" ;
$PageKeywordStr="links";
$PageDescriptionStr="links";
$PageCommentStr="Links";
$PageRobotsStr="all";
$PageFirstLineStr="LINKS";
include_once("$DOCUMENT_ROOT/include/header.php");
?>
Click here for more detailed information:
http://www.US-Webmasters.com/
Start Here to Find It Fast(TM):
http://www.US-Webmasters.com/best-start-page/
HostingMetro.com offers Linux and Windows hosting:
Affordable web hosting and domain
hosting.
include_once("$DOCUMENT_ROOT/include/footer.php"); ?>