<select name=make>
<?php
include 'db.php';
$makes = mysql_query("SELECT DISTINCT make FROM inventory;") or die(mysql_error());
$makeArray = mysql_fetch_array($makes);
foreach($makeArray as $makeOpt){
echo "<option>" . $makeOpt . "</option>";
}
?>
</select>
why does this only output the first value twice in the dropList?