程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php+ajax實現google搜索功能二[原創]

php+ajax實現google搜索功能二[原創]

編輯:關於PHP編程

//

原創作品

本站原創:www.111cn.cn

作者:面條愛兔子 QQ:271728967

注明:轉載請說明原出去 http://www.111cn.cn

//
現在來講一下post.php文件了,post.php文件很簡單,這個不一定用php可以用很多,只要是服務器腳都可以完成,{個人意見}

header("Content-type:text/html;charset=gb2312");我只說講這一句了,設置文檔編碼.

$key =isset($_POST['key'])?$_POST['key']:'';
 $sql ="select title from test where title like '%$key%' order by title desc";
 $result =mysql_query($sql) or die(mysql_error());
  echo"<div id=show >";
 while ($rs =mysql_fetch_array($result) ){
  echo "<li onMouseOver=\"this.style.background='#d7ebff'\" onMouseOut=\"this.style.background='#ffffff'\" onclick=\"javascript:fillin(this.innerHTML);\">".$rs['title']."</li>";
 }
  echo"</div>";

php+ajax實現google搜索功能二[原創].

浏覽地址:http://www.111cn.cn/test/test.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved