I have a database that displays vehicles in a different HTML table based on their vehicle make(e.g. Ford, Chevy). I would like to have the same make’s in the same HTML table. For example, if I have three vehicles, two Fords and one Chevy, I would like to have the two Ford’s in the same HTML table but in a different “
Here is my current code:
[php]
<?php echo $row1['Make']; ?> |
Photo | Year-Make-Model-Series | Exterior Color | Mileage | Price |
---|---|---|---|---|
<?php echo $row1['Year'] . " " . $row1['Make'] . " " . $row1['Model'] . " " . $row1['Series']; ?> | <?php echo $row1['Color']; ?> | <?php echo $row1['Mileage']; ?> | <?php echo $row1['Price']; ?> |