我已經鏈接到相應的自動完成和jQuery的ajax庫。這裏是腳本php mysql wordpress自動完成不工作
jQuery(document).ready(function($) {
$("#tag").autocomplete("data.php", {
selectFirst: true
});
});
和我data.php文件
$q = $_GET["q"];
$my_data=mysql_real_escape_string($q);
$sql="SELECT comname FROM wp_birds WHERE comname LIKE '%$my_data%' ORDER BY comname";
$result = mysql_query($sql) or die(mysql_error());
if($result)
{
while($row=mysql_fetch_array($result))
{
echo $row['comname']."\n";
}
}
和我的形式
<label>Tag:</label>
<input name="tag" type="text" id="tag" size="20"/>
的data.php文件被成功加載comnames的數組但是當我輸入我什麼都沒有...
哇,感謝您的快速響應!不幸的是,它仍然沒有工作... 這裏是data.php結果 http://hotspotbirding.com/blog/wp-content/themes/Western/data.php – 2013-04-03 22:04:03