我用我的数据库中的值制作了一个选择框,我希望第一个值是“做出选择”。
如何做呢?我有这个代码..
<tr>
<td width="180" height="30"><label for="valgtkon" class="labelLeft">Vælg konkurrencetype</label></td>
<td><select id="valgtTitel" name="valgtTitel" onchange="run()">
<?php
$virksomhedsID = $_SESSION['virkID'];
$sql = "SELECT * FROM konkurrenceType ORDER BY konkurrenceType.kontypeID";
$result = mysql_query($sql) or die(mysql_error());
while($rowSelect = mysql_fetch_assoc($result))
{
$kontypeTitel = $rowSelect['kontypeTitel'];
$kontypeID = $rowSelect['kontypeID'];
echo '<option value="' . $kontypeID . '">' . $kontypeTitel . '</option>';
}?>
</select></td>
<script>
function run() {
document.getElementById("valgtID").value = document.getElementById("valgtTitel").value;
}
</script>
<td><input type="text" name="valgtID" id="valgtID"/></td>
</tr>