2014-05-12 145 views
0

我有这样的HTML代码,我要搜索的一年学期:PHP Live搜索不显示结果

<script> 
function aa() { 
xmlhttp=new XMLHttpRequest(); 
xmlhttp.open("GET","rankGradePrint.php?nm="+document.form1.t1.value,false); 
xmlhttp.send(null); 
document.getElementById("d1").innerHTML=xmlhttp.responseText; 
} 

function bb() { 
xmlhttp=new XMLHttpRequest(); 
xmlhttp.open("GET","rankGradePrint.php?nmm="+document.form2.t2.value,false); 
xmlhttp.send(null); 
document.getElementById("d1").innerHTML=xmlhttp.responseText; 
} 
</script> 
<form name="form1" method="post"> 
<table width="405px" align="center"> 
<tr> 
<td width="5%"><img src="imgs/icSearch.png" height="25"/></td> 
<td><input type="text" name="t1" OnKeyup="aa();" class="box3" placeholder="Year"> </td> 
</tr> 
</table> 
</form> 
<form name="form2" method="post"> 
<table width="405px" align="center"> 
<tr> 
<td width="5%"><img src="imgs/icSearch.png" height="25"/></td> 
<td><input type="text" name="t2" OnKeyup="bb();" class="box3" placeholder="Semester"></td> 
</tr> 
</table> 

这里是我的rankGradePrint.php

<?php $nm1=$_GET['nm']; 
$nm2=$_GET['nmm']; 
if (empty($nm1)){ 
echo " "; 
exit; 
} 
if (empty($nm2)){ 
echo " "; 
exit; 
} 
include('konek.php'); 
    $query1="SELECT t2.schoUsername, t2.schoSurname, t2.schoFirstname, t2.schoMiddlename, t1.gradeAve, t1.gradeSem, t1.gradeSender 
      FROM tblgrade AS t1 JOIN tblscholar AS t2 
      ON t1.gradeSender=t2.schoUsername 
      WHERE t1.gYear LIKE ('$nm1%') AND t1.gradeSem LIKE ('$nm2%') 
      GROUP BY t1.gradeSender "; 
    $result = mysql_query($query1) or die(mysql_error()); 
    while($row=mysql_fetch_array($result)) 
{ 

echo $row['gradeSem']; 
echo " - "; 
echo $row['schoSurname'] . ", ". $row['schoFirstname'] . " ". $row['schoMiddlename']; 

if($row['gradeAve']<='2.5'){ 
    echo '<h1 style="text-decoration:none; color: #f60b3c;"><strong>'. $row['gradeAve'] .'</strong></h1>'; 
} 
else{ 
echo '<h1 style="text-decoration:none; color: #000510;><strong>'. $row['gradeAve'] .'</strong>'; 
} 
} 
?> 

<div id="d1"></div> 

我的问题是,当我输入文本框时,没有结果。我不知道是什么问题。我的查询中有问题吗?或在我的脚本?

HERE IS THE PRINTSCREEN

+0

如何向我们展示浏览器错误控制台的输出? – bodi0

+3

你很容易被__sql注入___。和'mysql_ *'已被弃用。学习mysqli或pdo。 – itachi

+0

当您使用opera时,我编辑了我的问题 – LeRandomGirl

回答

0

should做你的要求异步,但你不能使用下列内容:

document.getElementById("d1").innerHTML=xmlhttp.responseText; 

相反,你必须指定一个回调:

xmlhttp.onload = function() { 
    document.getElementById("d1").innerHTML = this.responseText; 
}; 

我会推荐使用POST进行搜索:

xmlhttp=new XMLHttpRequest(); 
xmlhttp.open("POST", "/path/to/your/script.php", true); 
xmlhttp.onload = function() { 
    alert(this.responseText); 
}; 

data = new FormData(); 
data.append('nm', your_value); 

xmlhttp.send(data); // could be a form dom node instead 

请参阅MDN reference

我也创建了一个jsFiddle来演示它。

此外,由于itachi已经mentioned in the comments,您应该使用MySQLi或PDO而不是已弃用的mysql_*函数。

+0

它不工作:( – LeRandomGirl

+0

@LeRandomGirl你可以再试一次吗?我链接了一个演示它的jsFiddle。 – kelunik