+---------+------------+
| class | name |
+---------+------------+
| 10021 | John |
| 10027 | Alex |
| 10030 | Brian |
| 10033 | Anita |
+---------+------------+
我想要同步我textfield
,當我從ComboBox中選擇其中一個菜單:同步組合框HTML文本框與
<?
$cn=mysql_connect("localhost","root") or die("Note: " . mysql_error());
$res=mysql_select_db("psi",$cn) or die("Note: " . mysql_error());
$sql = "select name, class from list;";
$res=mysql_query($sql) or die("Note: " . mysql_error());
?>
<select name="names">
<?
while($ri = mysql_fetch_array($res))
{
//this comboBox works well
echo "<option value=" .$ri['name'] . ">" . $ri['name'] . "</option>";
}
echo "</select> ";
echo "Class :";
echo "<input disabled type='text' value=".$ri['class'].">". $ri['class'] . "</input>";
?>
例如,當我從下拉框中選擇Alex
,我textfield
應顯示值爲10027
的字段。
你的意思是什麼?你想同時選擇Box/10021和John的值和文本在文本框中解決? –
你幾乎明白我的意思,當我從comboBox中選擇「Alex」時,textfield直接顯示「10027」,因爲該字段與表格相關。 – andrian
你有沒有試過下面的答案? –