What's the actual code? Text should go unformatted to database and when you fetch and print rows, then use nl2br function. You probably haven't escaped the contents from your form. To prevent this, use PDO or Mysqli instead of Mysql(which you really should not be using anymore).
Anyway, insert should go like this(using PDO):
$sql = "INSERT INTO table (year,make,model,trim,exterior,interior,price,vin,description) VALUES (:year,:make,:model,:trim,:exterior,:interior,:price,:vin,:description)";
$q = $conn->prepare($sql);
$q->execute(
array(
':year' => $year,
':make' => $make,
':model' => $model,
':trim' => $trim,
':exterior' => $exterior,
':interior' => $interior,
':price' => $price,
':vin' => $vin,
':description' => $description
)
);
Ofcourse those $year, $make etc. comes from your form so change them accordingly to $POST['year'], $POST['make'] and so on..