header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.snipercentral.com/military-issued-sniper-rifles/");
exit;
include("./inc/dbconnect.inc");
$DBCONN = new cDBConn();
$szErr = "";
include 'inc/menu.php';
displayHeader("Military Issued Sniper Rifles from around the world");
?>
Current Armed Forces Sniper Rifles
This is the place where I would like to keep a very up to date and as complete as possible
list of sniper rifles used by the armed forces from around the world. The rifles that are
included here are standard issue sniper rifles. I also have a column for rifles that are
not standard issue but are used by units in the respective militaries (generally special
forces units). If you can help in ANY way to update the list or make corrections, please
EMAIL me! I would like this list to contain all countries,
no matter how large or small, or what political flavor.
Country |
Official Adopted |
Civilian Version |
Other Rifles Used |
$iCnt = $DBCONN->Query("SELECT country, models, civilian, others FROM world_rifles ORDER BY country");
for ($ii = 0; $ii < $iCnt; $ii++)
{
$rgResult = $DBCONN->GetNextRow();
echo("\n");
echo("" . $rgResult[0] . " | \n");
echo("" . $rgResult[1] . " | \n");
echo("" . $rgResult[2] . " | \n");
echo("" . $rgResult[3] . " | \n");
echo("
");
}
?>
Return to Main
include 'inc/footer2.php';
?>