程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 數據庫內容搜索(搜索指定內容並輸出)

php 數據庫內容搜索(搜索指定內容並輸出)

編輯:關於PHP編程

實現原理很簡單就是根據用戶提交的數據到mysql數據表中查詢是否有相同的,有就輸出沒有就不操作了。這是一款簡單的記錄搜索代碼。

php教程 數據庫教程內容搜索(搜索指定內容並輸出)
/*
首先我們來創建搜索數據表
create table if not exists `search` (
  `id` int(4) not null auto_increment,
  `keyword` varchar(500) not null,
  primary key  (`id`)
) engine=myisam default charset=utf8 auto_increment=1 ;

保存數據

insert into `acc`.`search` (
`id` ,
`keyword`
)
values (
null , '內容搜索'
), (
null , 'php站內搜索'
);

*/

//數據連接

$conn = mysql教程_connect('localhost','ac','1');//這裡的ac用戶名,1是密碼,修改成你自己的mysql便可

$res = mysql_db_query('abc',"select * from search where keyword='內容搜索' ") or die(mysql_error());

if(mysql_num_rows($res) == 1) {
   while($row = mysql_fetch_assoc($res)) {
      foreach($row as $key => $val) {
         echo $row['keyword'],'<br >';
      }
   }
}

/*
實現原理很簡單就是根據用戶提交的數據到mysql數據表中查詢是否有相同的,有就輸出沒有就不操作了。這是一款簡單的記錄搜索代碼。
本站原創轉載注明來源www.bKjia.c0m
*/

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