รายละเอียดของการตอบ ::
เขียนยังไงครับ ช่วยแนะนำหน่อย
<select name="CategoryId" >
<?php
$sql="select * from category ";
$result=mysql_query($sql);
while($row=mysql_fetch_array($result))
{
?>
<option value="<?=$row['CategoryId']?>"><?=$row['CategoryName']?></option>
<?php
}
?>
</select>