クエリ用に記述された形式でテキストボックスの値を使用したい.Hereは私のコードです。
<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>
これは可能ですか?