我想制作一个包含类别和名称的表单的页面,我应该从数据库中检索名称。我以前问过这个问题,现在我修改了我的代码,结果显示“查询为空”。我不知道为什么会这样说。这是我所有的页面代码。
<html>
<head>
<title>Assign Examiner</title>
</head>
<body>
<?php include('../include/dbconnect.php');
$names=$_POST['user'];
$exp = $_POST['expert'];
$mysql_i=mysql_query("SELECT name FROM user WHERE expert='".$exp."'");
$mysql_res = mysql_query($mysql_i) or die(mysql_error());
mysql_close();
?>
<form name="examiner" action="" method="post">
<table align="center" width="50%" border="1">
<tr>
<td>Category :</td>
<td><select name="expertise"><option value="multimedia">Multimedia
<option value="security">Security & Networking
<option value="mobile">Android Mobile
<option value="web">Web Development
</option></option</option></option>
</select>
</td>
</tr>
<tr>
<td>Name :</td>
<td><select name="exam"><option value="<?php echo $mysql_i;?>">PLEASE CHOOSE</option></select></td>
</tr>
</body>
</html>