HTMLフォームからのgpa入力に基づいて、mysqlデータベースからajaxベースのフォームを介して学生を引き出そうとしています。
私のフォームのコードは次のとおりです。
<html>
<body>
<script language="javascript" type="text/javascript">
<!--
//Browser Support Code
function ajaxFunction(){
var ajaxRequest; // The variable that makes Ajax possible!
try{
// Opera 8.0+, Firefox, Safari
ajaxRequest = new XMLHttpRequest();
}catch (e){
// Internet Explorer Browsers
try{
ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
}catch (e) {
try{
ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
}catch (e){
// Something went wrong
alert("Your browser broke!");
return false;
}
}
}
// Create a function that will receive data
// sent from the server and will update
// div section in the same page.
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
var ajaxDisplay = document.getElementById('ajaxDiv');
ajaxDisplay.value = ajaxRequest.responseText;
}
}
// Now get the value from user and pass it to
// server script.
var gpa = document.getElementById('gpa').value;
var queryString = "?gpa=" + gpa ;
ajaxRequest.open("GET", "ajax.php" +
queryString, true);
ajaxRequest.send(null);
}
//-->
</script>
<form name='myForm'>
GPA: <input type='text' id='gpa' /> <br />
<br />
<input type='button' onclick='ajaxFunction()'
value='Search for students with higher GPA'/>
</form>
<div id='ajaxDiv'>Your result will display here</div>
</body>
</html>
ここに私の処理コードがあります:
<?PHP
include_once ('database.php');
$gpa = $_GET['gpa'];
// Escape User Input to help prevent SQL Injection
$gpa = mysql_real_escape_string($gpa);
//build query
$data = $conn->query("SELECT * FROM StudentGPA WHERE GPA = $gpa");
//Execute query
$qry_result = mysql_query($data) or die(mysql_error());
//Build Result String
$display_string = "<table>";
$display_string .= "<tr>";
$display_string .= "<th>Student ID</th>";
$display_string .= "<th>Name</th>";
$display_string .= "<th>Gender</th>";
$display_string .= "<th>Major</th>";
$display_string .= "<th>GPA</th>";
$display_string .= "</tr>";
// Insert a new row in the table for each person returned
while($row = mysql_fetch_array($qry_result)){
$display_string .= "<tr>";
$display_string .= "<td>$row[studentID]</td>";
$display_string .= "<td>$row[name]</td>";
$display_string .= "<td>$row[gender]</td>";
$display_string .= "<td>$row[major]</td>";
$display_string .= "<td>$row[GPA]</td>";
$display_string .= "</tr>";
}
echo "Query: " . $query . "<br />";
$display_string .= "</table>";
echo $display_string;
?>
フォームは正常に機能していますが、送信ボタンをクリックしても何も起こりません。私はどこからでもエラーを引き出していないので、実際に何が起こっているのかわかりません。エラーなどを視覚的に確認する方法はありますか? データベースからデータを取得しない理由がわかりません。