Southern Super Heavyweight Shootout 2008
Welcome To SSHS 2008!
Welcome to the official website of the 2008 Southern Super Heavyweight Shootout! The site is new so check back often. We'll be adding new content all the time.
SSHS 8 will be held at the Atlanta Dragway on Saturday, November 8th, 2008. It is located in Commerce, GA, about an hour north of downtown Atlanta on I-85
This is the premier event between all the domestic heavyweights, including Mopar, Chevy and Ford. You will find the fastest Mopars, Chargers, 300Cs, Impalas, Caprices, Mark VII's, Mark VIII's, Marauders and Crown Vics, just to name a few(EVEN THE SHELBY GT500), along with any other heavyweight weighing in at two tons. We want to see the big guys duke it out!
Registration will be $65 for car, driver, and one guest.Sponsor and additional guest entry will be $10.Children 12 and under are free.
Want to see your car on SSHS8.com? Upload your image now!!
Photos may not contain nudity, violent or offensive material, or copyrighted images. *Image may take up to 24 hours to be displayed*
//print_r($_POST);
if($_POST["action"] == "Upload Image")
{
unset($imagename);
if(!isset($_FILES) && isset($HTTP_POST_FILES))
$_FILES = $HTTP_POST_FILES;
if(!isset($_FILES['image_file']))
$error["image_file"] = "An image was not found.";
$imagename = basename($_FILES['image_file']['name']);
//echo $imagename;
if(empty($imagename))
$error["imagename"] = "The name of the image was not found.";
if(empty($error))
{
$newimage = "images/" . $imagename;
//echo $newimage;
$result = @move_uploaded_file($_FILES['image_file']['tmp_name'], $newimage);
if(empty($result))
$error["result"] = "There was an error moving the uploaded file.";
}
}
?>
if(is_array($error))
{
while(list($key, $val) = each($error))
{
echo $val;
echo " \n";
}
}
?>