asdsad

2772 단어 SAD

  
  
  
  
  1. function search() {  
  2.        $key = $_GET['key'];  
  3.        if(!emptyempty($key)){  
  4.            $Model = new Model();  
  5.            $list = $Model->query("select * from base_article where `title` LIKE '%".$key."%'");  
  6.            if ($list){  
  7.                foreach ($list as $k=>$v) {  
  8.                    $red = "<b>$key</b>";  
  9.                    $list[$k]['title'] = str_replace($key$red$v['title']);  
  10.                }  
  11.            }  
  12.            $this->assign("list",$list);  
  13.        }  
  14.        $this->display();  
  15.    } 

좋은 웹페이지 즐겨찾기