// This code is copyrighted material owned by W. D. Bricker, doing business
// as US-Webmasters.com. Copyright 1998-2009 - 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.
// To get rid of "the Undefined variable: DOCUMENT_ROOT" error:
// The Root Directory:
// This worked in PHP4:
// $RootDir = $RootDir;
// This works in PHP5:
$RootDir = $_SERVER['DOCUMENT_ROOT'];
// $RootDir = $RootDir."/testing";
// Echo "DOCUMENT_ROOT: ".$RootDir."
\n";
// Echo "RootDir: ".$RootDir."
\n";
// We'll need access to the Global Variables:
// include_once("$DOCUMENT_ROOT/include/GlobalVars.php");
// To get rid of: Warning: include_once() [function.include-once]: Unable to access /include/GlobalVars.php in
include_once("$RootDir/include/GlobalVars.php");
// We will be accessing all sorts of functions:
//include_once("$DOCUMENT_ROOT/include/Functs.php");
include_once("$RootDir/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");
include_once("$RootDir/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="US-Webmasters.com Web Hosting Inquiry Form";
$PageTitleStr="US-Webmasters.com Web Hosting Inquiry Page - Small Business Web Hosting";
$PageKeywordStr="Small Business, Small Business Resource, Small Business Marketing, Small Business Web Hosting, Small Business Web Design, Small Business Services, Small Business Advertising, Small Business Help, Hosting Web Site Small Business Web Page, Advertising Small Business, Small Business Web Site, Small Business Server, Merchant Account And Small Business, Small Business Solution, Small Business Promotion, Small Business Web Site Design";
$PageDescriptionStr="Web Hosting * US-Webmasters.com * Professional Web Page Design and Hosting services for Small Business * Specializing in Small Business Web Hosting and Small Business Web Design";
$PageCommentStr="Small Business, Small Business Opportunity, Small Business Idea, Starting A Small Business, Start A Small Business, Starting Small Business, Small Business Consultant, Small Business Resource, Small Business Marketing, Small Business Web Hosting, Small Business Startup, Small Business Web Design, Small Business And Email Or Info Or Contact Or Web Master Or Mail, Small Business Services, Small Business Advertising, Small Business Help, Small Business Information, Start Small Business, Small Business Consulting, Hosting Web Site Small Business Web Page, Advertising Small Business, Small Business Web Site, Small Business Server, Merchant Account And Small Business, Small Business Solution, Small Business Los Angeles California, Small Business Promotion, Small Business Web Site Design";
$PageRobotsStr="All";
// Notice: Undefined variable: ThisIsDoorway
// IF (!($ThisIsDoorway))
// If not set, then set it to get rid of error message:
If (!IsSet($ThisIsDoorway))
{$ThisIsDoorway=0;}
If ($ThisIsDoorway<>1)
{$PageFirstLineStr="Small Business Web Hosting * Small Business Server Hosting";}
// Notice: Undefined variable: DOCUMENT_ROOT in:
// include_once("$DOCUMENT_ROOT/include/header.php");
include_once("$RootDir/include/header.php");
?>