$result=mysql_query("Select $st from `jb_student` where `Sno`=56");
$row=mysql_fetch_array($result);
echo "<table>
<tr>
<th>NAME</th>
<th>EMAIL</th>
<th>MOBILE</th>
</tr>";
echo "<tr><td>".$row[0]."</td><td>".$row[1]."</td><td>".$row[2]."</td></tr>";
echo "</table>";
在上面的代码中,我根据字符串 $st 从数据库中检索数据。例如,如果我不想要手机,应该只返回姓名和电子邮件,我该如何限制代码。请帮我。