header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.snipercentral.com/access-premium-content/");
exit;
session_start();
include("./inc/dbconnect.inc");
$DBCONN = new cDBConn();
$szErr = "";
// Disable caching
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
// always modified
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// HTTP/1.1
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// HTTP/1.0
header("Pragma: no-cache");
include 'inc/menu.php';
displayHeader("Special Pricing and Offers for Sniper Central");
?>
SC Special Pricing and Availability
We have put together a single location to get
all your sniping and tactical equipment. Futhermore, we have also
put together special pricing for members of Sniper Central. Not a member?
Signup now,
its only $10 a year and includes a newsletter, access to the members only information
pages on the site, the special prices on this page, and much much more. If you would like to see
sample pricing, you can go here or
if you would like to see specific pricing on a particular item before joining the site, feel
free to email us.
Items generally take a week before shipping from our facility from when the order is
placed. All firearms and ammunition are shipped in strict accordance with state and
federal laws. To place an order you can request a quote from our new qoute system.
SC Request a Quote
This new system tracks a quote all the way through purchase and even allows you to purchase your
special order with a credit card. Go ahead and try the system out.
$iCnt = $DBCONN->Query("SELECT p.brand, p.model, p.member_price, p.nonmember_price, c.name FROM member_pricing p, category c WHERE p.category_id = c.category_id AND active = 'Y' ORDER BY c.name, p.brand, p.model");
$oldCat = "";
for ($ii = 0; $ii < $iCnt; $ii++)
{
$rgResult = $DBCONN->GetNextRow();
$curCat = $rgResult[4];
$SCPrice = ($rgResult[2] == -0.01)?"POR":$rgResult[2];
$nonMemPrice = ($rgResult[3] == -0.01)?"POR":$rgResult[3];
if (!$_SESSION['uid'] || !$_SESSION['loggedin'])
{
$SCPrice = "Log in to see";
}
if ($ii==0) // first row
{
$oldCat = $curCat;
echo("");
echo("$curCat |
");
echo("");
echo("Brand | ");
echo("Model | ");
echo("SC Member Price | ");
echo("Non Member Price | ");
echo(" | ");
echo("
");
}
if ($oldCat == $curCat)
{
echo("\n");
echo("" . $rgResult[0] . " | \n");
echo("" . $rgResult[1] . " | \n");
echo("" . $SCPrice . " | \n");
echo("" . $nonMemPrice . " | \n");
echo("Begin Purchase | \n");
echo("
");
}
else
{
$oldCat = $curCat;
echo("
");
echo("");
echo("$curCat |
");
echo("");
echo("Brand | ");
echo("Model | ");
echo("SC Member Price | ");
echo("Non Member Price | ");
echo(" | ");
echo("
");
echo("\n");
echo("" . $rgResult[0] . " | \n");
echo("" . $rgResult[1] . " | \n");
echo("" . $SCPrice . " | \n");
echo("" . $nonMemPrice . " | \n");
echo("Begin Purchase | \n");
echo("
");
}
}
echo("
");
?>
include 'inc/footer2.php';
?>