+---------+------------+
| class | name |
+---------+------------+
| 10021 | John |
| 10027 | Alex |
| 10030 | Brian |
| 10033 | Anita |
+---------+------------+
textfield
コンボボックスからメニューの1つを選択すると、同期しようとしています。
<?
$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
。