mysqlテーブルの値が正しく入力されているフォーム選択ボックスがありますが、投稿されると、投稿された値は、ボックスに表示されている選択されたアイテムではなく、テーブル「manutags」の最後のアイテムになります。誰かが私のロジックの何が問題なのか教えてもらえますか?
<p class="formlabel cf text nobox">Tag Style <!--popuplate with tag styles-->
<?$i=1;
while($i<11){?>
<select class="man_sty <?$m='man'.$i++;echo $m?>" name="style_id">
<?
$sql = "SELECT DISTINCT man,style_id FROM manutags WHERE man_id = '$m'";
$result = mysql_query($sql) or die(mysql_error());
while($row = mysql_fetch_array($result)){
?>
<option value="<?=$row[1];?>"><?echo $row[1]?></option><!-- tag dropdown values-->
<?}?>
</select>
<?}?>
HTML
<p class="formlabel cf text nobox">
Tag Style
<select class="man_sty man1" name="style_id_1" style="display: none;">
<option selected="" value="Kliktag">Kliktag</option>
<option value="RD2000">RD2000</option>
<option value="Button-R">Button-R</option>
<option value="SnappTagg">SnappTagg</option>
<option value="AutoEID">AutoEID</option>
</select>
<select class="man_sty man2" name="style_id_2" style="display: none;">
<option selected="" value="rototag">rototag</option>
</select>
<select class="man_sty man3" name="style_id_3" style="display: inline;">
<option selected="" value="Qwik">Qwik</option>
<option value="Zee">Zee</option>
</select>
</p>