實現原理很簡單就是根據用戶提交的數據到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
*/