我想创建一个非常简单的 ajax 自动建议,它可以从数据库中检索一些数据。
你可以在这里看到:
索引.php
<html>
<head>
<script type="text/javascript">
function suggest() {
var txtSearch = document.getElementById('txtSearch').value;
if (window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject('MicrosoftXMLHTTP');
}
xmlhttp.onreadystatechange = function() {
if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById('myDiv').innerHTML = xmlhttp.responseText;
}
}
var target = 'include.inc.php?txtSearch=' + txtSearch;
xmlhttp.open('GET', target, true);
xmlhttp.send();
}
</script>
</head>
<body>
<input type="text" id="txtSearch" onkeyup="suggest();"/>
<div id="myDiv"></div>
</body>
</html>
包括.inc.php
<?php
require_once 'connect.inc.php';
if (isset($_GET['txtSearch'])) {
$txtSearch = $_GET['txtSearch'];
getSuggest($txtSearch);
}
function getSuggest($text) {
$sqlCommand = "SELECT `SurName` FROM `person` WHERE `SurName` LIKE '%$text%'";
$query = mysql_query($sqlCommand);
$result_count = mysql_num_rows($query);
while ($row = mysql_fetch_assoc($query)) {
echo $row['SurName'].'<br />';
}
?>
问题 :
在第 22 行出现以下错误,但我不知道为什么:
Parse error: syntax error, unexpected end of file in C:\wamp\www\PHP_Ajax_Autosuggest\include.inc.php on line 22
PS:
我没有提到connect.inc.php
内容,因为它工作正常。
任何帮助将不胜感激。