mysql とデータベースからのドロップダウン選択メニューに問題があります
ドロップダウンから値を選択すると、ページのリロードとページの更新が選択され、オプション選択オプションに戻りますか?
function getComboB(sel) {
var roomtype=document.getElementById("roomtype");
var value = sel.options[sel.selectedIndex].value;
checkin.action = "checkin.php?item_combo="+value+"";
checkin.submit();
}
<select name="roomtype" id="roomtype" style="width:150px;" onchange="getComboB(this)">
<option><--Select--> </option>
$query=mysql_query("SELECT * FROM roomtype order by id");
while($row=mysql_fetch_assoc($query))
{
$val2=$row['id'];
?>
<option value="<?=$val2;?>" <? if ($roomtype == $val2) { echo "selected='selected'"; }?> > <?=$row['roomtype'];?> </option>
<?php }?>
</select>