我想在为查询编写的表单中使用文本框的值。这是我的代码。
<form method="post" action="#">
<label>Subject</label>
//I can use option also here
<input type="text" maxlength="30" name="subject" />
<?php
$query=mysql_query("SELECT * FROM STUDENT where subject="textbox.text"");
?>
</form>
这可能吗?