0) { tep_db_query("update cart set product_quantity = '" . $HTTP_POST_VARS['cart_quantity'] . "' where id = '" . $HTTP_POST_VARS['cartid'] . "'"); header('Location: ' . tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL')); tep_exit(); } else { tep_db_query("delete from cart where id = '" . $HTTP_POST_VARS['cartid'] . "'"); header('Location: ' . tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL')); tep_exit(); } } elseif (tep_session_is_registered('nonsess_cart')) { if ($HTTP_POST_VARS['cart_quantity'] > 0) { $nonsess_cart_contents = explode('|', $nonsess_cart); for ($i=0;$i ' . NAVBAR_TITLE . ''; ?> <?=TITLE;?> - My Shopping Cart
"; while($special_values = tep_db_fetch_array($check_special)){ if(!$new_price){ switch($special_values['type']){ case "0": unset($new_price); break; case "1": $disc_val = (100 - $special_values['rate']); $new_price = number_format(($price * ($disc_val/100)),2, '.', ''); break; case "2": $new_price = number_format(($price - $special_values['rate']),2, '.', ''); break; case "3": $new_price = number_format(($special_values['rate']),2, '.', ''); //print $new_price."
"; break; default: } } if($shipping > 0){ if(($special_values['fship']==='1')&&(($special_values['exft']==='0')||(($special_values['exft']==='1')&&($check_cart_values['collect']==='0')))){ if((($special_values['ltype'] === '1')&&($price > $special_values['lrate']))||($special_values['ltype'] == '0')){ $shipping = 0; } } } } } /* Process coupon codes for price discounts print "Coupon Code: ".$coupon_code."
"; print "Coupon Message: ".$coupon_message."
"; print "Coupon Type: ".$coupon_type."
"; print "Coupon Amount: ".$coupon_amount."
"; print "Coupon Min: ".$coupon_min."
"; print "Coupon Freight: ".$coupon_freight."
"; print "Coupon Qualify: ".$coupon_qualify."
"; print "Coupon Products: ".$coupon_products."
";*/ if(tep_session_is_registered('coupon_code') && $coupon_qualify == 1 && ($coupon_type == 1 || $coupon_type == 2 || $coupon_type == 3)){ $prodid_ar = explode(",",$coupon_products); //print_r($prodid_ar); if(in_array($check_cart_values['product_id'],$prodid_ar)){ $coupon_product = 1; tep_session_register('coupon_product'); switch($coupon_type){ case "1": $new_price = number_format(($price - $coupon_amount),2, '.', ''); //print "fixed discount amount
"; break; case "2": $disc_val = (100 - $coupon_amount); $new_price = number_format(($price * ($disc_val/100)),2, '.', ''); //print "% discount amount
"; break; case "3": //print "apply free shipping
"; if($shipping > 0){ if(($check_cart_values['collect']==1 && $coupon_freight == 1)||($check_cart_values['collect']==0)){ $shipping = 0; } } default: } } } if($new_price > 0){ $price_txt = "".$price."
$".$new_price; $price = $new_price; }else{ $price_txt = $price; } IF ($check_cart_values['collect']==1){ $collectind = 'Ships truck freight'; $collectnote = 1; }else{ $collectind = ''; } $products_name = tep_products_name($check_cart_values['supplier_name'], $check_cart_values['product_name']); if ((file_exists(DIR_SERVER_ROOT.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.$check_cart_values['image'])) && (is_file(DIR_SERVER_ROOT.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.$check_cart_values['image']))){ list($width, $height, $type, $attr) = @getimagesize(HTTP_SERVER.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.rawurlencode($check_cart_values['image'])); if($width>$height){ $imgsz = 'width="100"'; }else{ $imgsz = 'height="100"'; } $imaget = HTTP_SERVER.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.rawurlencode($check_cart_values['image']); }else{ $imaget = DIR_IMAGES.'default_product_image.gif'; $imgsz='width="100"'; } echo ''; echo ''; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo '' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo '' . "\n"; echo ' ' . "\n"; echo '' . "\n"; echo ' ' . "\n"; }else{ echo 'FREE' . "\n"; } echo '' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' '; $total_cost = $total_cost + ($check_cart_values['product_quantity'] * $price); $ship_crate= $ship_crate + ($check_cart_values['product_quantity'] * $check_cart_values['crate']); $total_shipping = $total_shipping + ($check_cart_values['product_quantity'] * $shipping); } } elseif (tep_session_is_registered('nonsess_cart')) { $total_cost = 0; $total_shipping = 0; $crate_value=0; $ship_crate=0; $ship_value = 0; $ship_collect = 0; $product_in_cart = 0; $collectnote = 0; $showtax = 0; $nonsess_cart_contents = explode('|', $nonsess_cart); $row_number = 1; for ($i=0;$i"; $product_info = explode(':', $nonsess_cart_contents[$i]); if (($product_info[0] != 0) && ($product_info[1] != 0)) { $product_in_cart = 1; if (strlen($product_info[2])){ $check_cart = tep_db_query("select supplier.dba_name as supplier_name, product.name as product_name, product.supplier_id as suppid, product.price, product.image, product.supplier_part_number as part_number, product.shipping, product.crate, product.collect, vehicle_model.Model, vehicle_make.Make from supplier, product, vehicle_make, vehicle_model where product.id = '" . $product_info[0] . "' and product.supplier_id = supplier.id and vehicle_model.ID = '".$product_info[2]."' and vehicle_make.MakeID = vehicle_model.Make_ID"); }elseif((strlen($product_info[4]))&&(!strlen($product_info[2]))){ $check_cart = tep_db_query("select supplier.dba_name as supplier_name, product.name as product_name, product.supplier_id as suppid, product.price, product.image, product.supplier_part_number as part_number, product.shipping, product.crate, product.collect, vehicle_make.Make from supplier, product, vehicle_make where product.id = '" . $product_info[0] . "' and product.supplier_id = supplier.id and vehicle_make.MakeID = '".$product_info[4]."'"); }else{ $check_cart = tep_db_query("select supplier.dba_name as supplier_name, product.name as product_name, product.supplier_id as suppid, product.price, product.image, product.supplier_part_number as part_number, product.shipping, product.crate, product.collect from supplier, product where product.id = '" . $product_info[0] . "' and product.supplier_id = supplier.id"); } $check_cart_values = tep_db_fetch_array($check_cart); if (strlen($product_info[2])){ $mrmake = $check_cart_values['Make']; $mrmodel = $check_cart_values['Model']; }elseif((strlen($product_info[4]))&&(!strlen($product_inf[2]))){ $mrmake = $check_cart_values['Make']; $mrmodel = 'UnKnown'; }else{ $mrmake = 'Not Defined'; $mrmodel = ' '; } $price = $check_cart_values['price']; $shipping = $check_cart_values['shipping']; $check_special = tep_db_query("select * from specials2 where product_id REGEXP '^".$product_info[0].",|,".$product_info[0].",|,".$product_info[0]."$|^".$product_info[0]."$' and active=1 and (CURDATE() BETWEEN start AND end) AND ((site_id = 1)OR(site_id = '".WEBSITE_ID."'))"); //echo "select * from specials2 where MATCH(product_id) AGAINST(\"" . $product_info[0] . "\" IN BOOLEAN MODE) and active=1 and (CURDATE() BETWEEN start AND end) AND ((site_id = 1)OR(site_id = '".WEBSITE_ID."'))"; if (tep_db_num_rows($check_special)) { //echo"FOUND IT
"; while($special_values = tep_db_fetch_array($check_special)){ if(!$new_price){ switch($special_values['type']){ case "0": unset($new_price); break; case "1": $disc_val = (100 - $special_values['rate']); $new_price = number_format(($price * ($disc_val/100)),2, '.', ''); break; case "2": $new_price = number_format(($price - $special_values['rate']),2, '.', ''); break; case "3": $new_price = number_format($special_values['rate'],2, '.', ''); //print $new_price."
"; break; default: } } if($shipping > 0){ if(($special_values['fship']==='1')&&(($special_values['exft']==='0')||(($special_values['exft']==='1')&&($check_cart_values['collect']==='0')))){ if((($special_values['ltype'] === '1')&&($price > $special_values['lrate']))||($special_values['ltype'] === '0')){ $shipping = 0; } } } } } /* Process coupon codes for price discounts print "Coupon Code: ".$coupon_code."
"; print "Coupon Message: ".$coupon_message."
"; print "Coupon Type: ".$coupon_type."
"; print "Coupon Amount: ".$coupon_amount."
"; print "Coupon Min: ".$coupon_min."
"; print "Coupon Freight: ".$coupon_freight."
"; print "Coupon Qualify: ".$coupon_qualify."
"; print "Coupon Products: ".$coupon_products."
";*/ if(tep_session_is_registered('coupon_code') && $coupon_qualify == 1 && ($coupon_type == 1 || $coupon_type == 2 || $coupon_type == 3)){ $prodid_ar = explode(",",$coupon_products); //print_r($prodid_ar); if(in_array($product_info[0],$prodid_ar)){ $coupon_product = 1; tep_session_register('coupon_product'); switch($coupon_type){ case "1": $new_price = number_format(($price - $coupon_amount),2, '.', ''); //print "fixed discount amount
"; break; case "2": $disc_val = (100 - $coupon_amount); $new_price = number_format(($price * ($disc_val/100)),2, '.', ''); //print "% discount amount
"; break; case "3": //print "apply free shipping
"; if($shipping > 0){ if(($check_cart_values['collect']==1 && $coupon_freight == 1)||($check_cart_values['collect']==0)){ $shipping = 0; } } default: } } } if($new_price > 0){ $price_txt = "".$price."
$".$new_price; $price = $new_price; }else{ $price_txt = $price; } //print $price."
"; IF ($check_cart_values['collect']==1){ $collectind = 'Ships truck freight'; $collectnote = 1; }else{ $collectind = ''; } $products_name = tep_products_name($check_cart_values['supplier_name'], $check_cart_values['product_name']); if ((file_exists(DIR_SERVER_ROOT.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.$check_cart_values['image'])) && (is_file(DIR_SERVER_ROOT.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.$check_cart_values['image']))){ list($width, $height, $type, $attr) = @getimagesize(HTTP_SERVER.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.rawurlencode($check_cart_values['image'])); if($width>$height){ $imgsz = 'width="100"'; }else{ $imgsz = 'height="100"'; } $imaget = HTTP_SERVER.DIR_CATALOG.'shared/'.$check_cart_values['suppid'].'/'.rawurlencode($check_cart_values['image']); }else{ $imaget = DIR_IMAGES.'default_product_image.gif'; $imgsz='width="100"'; } echo '
'; echo ''; echo '
' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo '' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo '' . "\n"; echo ' ' . "\n"; echo '' . "\n"; echo ' ' . "\n"; }else{ echo 'FREE' . "\n"; } echo '' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' '; $total_cost = $total_cost + ($product_info[1] * $price); $ship_crate = $ship_crate + ($product_info[1] * $check_cart_values['crate']); $total_shipping = $total_shipping + ($product_info[1] * $shipping); $row_number++; } } if ($product_in_cart == 0) { tep_session_unregister('nonsess_cart'); } if (!tep_session_is_registered('nonsess_cart')) { $cart_empty = 1; } } } else { echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; echo ' ' . "\n"; } if ($cart_empty != 1) { ?>
Shopping Cart Warranty Info Return Info
 
Quantity Item Price Shipping Total Price  
 ' . tep_image_submit(DIR_IMAGES . 'cart-btn-update.gif', '23', '19', '0', 'Update Quantity') . 'Remove from Cart' . $products_name . ' '.$collectind.'
Vehicle: '.$mryear.' '.$mrmake.' '.$mrmodel.'
Part Number: '.$check_cart_values['part_number'].'
$' . $price_txt . ''; if($shipping>0){ echo '$' . number_format(($check_cart_values['product_quantity'] * $shipping),2) . '$' . number_format(($check_cart_values['product_quantity'] * $price),2) . '
 ' . tep_image_submit(DIR_IMAGES . 'cart-btn-update.gif', '23', '19', '0', 'Update Quantity') . ' Remove from Cart' . $products_name . ' '.$collectind.'
Vehicle: '.$mryear.' '.$mrmake.' '.$mrmodel.'
Part Number: '.$check_cart_values['part_number'].'
$' . $price_txt . ''; if($shipping > 0){ echo '$' . number_format(($product_info[1] * $shipping),2) . '$' . number_format(($product_info[1] * $price),2) . '
 ' . TEXT_CART_EMPTY . ' 
' . tep_black_line() . '

   
"> value="Enter Coupon Code" onFocus="this.value=''">
Coupon Code  
value="">  
";}?>  
0){?>
    $ 
    $ 
 Shipping:    FREE $ 
 Crate Charge:   $ 
    $ 
 
 
Denotes that item(s) listed above ship via Truck Freight. Online shipping rates reflect shipping to a commercial(business) address. Any shipment to a non-commercial address(residence) will be assessed an additional $25 residential delivery fee.
 
 
Please Note: Sales Tax is charged to California & Georgia Residents ONLY. 
Sorry, we do not ship to PO Boxes or APO boxes. Physical address only. 

 
International customers must use your Bongo shipping address.
Please click the image below to get started if you do not have a Bongo account.