日期:2014-05-17 浏览次数:20470 次
<td width="100px;">车种</td>
<td><select name="cartype" style="width:90px;" />
<?php
$sql="select * from cartype";
$query=mysql_query($sql);
while($result=mysql_fetch_array($query)){
?>
<option value="<?=$result[cartype]?>"><?=$result[cartype]?></option>
<?php
}
?>
</select></td>