Swift Used Car Inventory List - Click on headers to sort, pictures to see details.
rows($GET_SQL);
if(count($total_listings) > 0){
?>
| Stock# |
Year |
Make |
Model |
Mileage |
Color |
Price |
Picture |
| Stock# |
Year |
Make |
Model |
Mileage |
Color |
Price |
Picture |
';
$content .= ''.$item['StockID'].' | ';
$content .= ''.$item['Year'].' | ';
$content .= ''.$item['Make'].' | ';
$content .= ''.$item['Model'].' | ';
$content .= ''.$item['Mileage'].' | ';
$content .= ''.$item['ExtColor'].' | ';
$content .= '$'.$item['WebPrice'].' | ';
$content .= ' | ';
$content .= '';
}
echo $content;
unset($content); unset($total_listings);
?>