Home > php教程 > php手册 > body text

站内搜索关键词变亮方法

WBOY
Release: 2016-06-13 11:23:30
Original
799 people have browsed it

我们这个做法是把搜索结果出来,与搜索关键词相同的替换成高亮的字, 我们会用到str_replace('你找的关键字',“你找的关键字带有高亮的html标签>”,$str);

站内搜索关键词变亮方法 
  我们这个做法是把搜索结果出来,与搜索关键词相同的替换成高亮的字,
  我们会用到str_replace('你找的关键字',“你找的关键字带有高亮的html标签>”,$str);
  就这么容易了,好了下面我们来看一个实例吧。
 
  先创建一个数据库教程 create database 'searchKey';
  再创建表
 
  CREATE TABLE `fangke_cc`.`search` (
 `id` INT( 4 ) NOT NULL AUTO_INCREMENT ,
 `keyword` VARCHAR( 20 ) NOT NULL ,
 PRIMARY KEY ( `id` )
 ) ENGINE = MYISAM

 我们导入一些数据
 
 
 INSERT INTO `search` (`id`, `keyword`) VALUES
(1, '中国WEB第一站www.bkjia.com'),
(2, '中国WEB第一站www.bkjia.com'),
(3, '中国WEB第一站www.bkjia.com'),
(4, '中国WEB第一站www.bkjia.com');

好了下面我们就来执行查询操作
*/
if( $_POST) {

 $db ='fangke_cc';
 mysql教程_pconnect('localhost','root','root') or die(mysql_error());
 mysql_select_db($db);
 mysql_query("set names 'gbk'");  
 $key = $_POST['keyword'];
 $sql = "Select * from search where keyword like '%$key%'";
 $query = mysql_query($sql);
 while( $rs = mysql_fetch_array( $query ) )
 {
  echo str_replace($key,"$key",$rs['keyword']),'
';
 }
 /*
  中国WEB第一站www.111cn.net

  中国WEB第一站www.111cn.net

  中国WEB第一站www.111cn.net

  中国WEB第一站
 */
}

?>


 
 

注明:本文章原创于www.bkjia.com  转载注明出处


source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template