欢迎访问 舍力博客(www.shuyong.net)
$sqlSegment = "and title like '%{$keyword}%' order by date desc";替换为:
$sqlSegment = "and content like '%{$keyword}%' order by date desc";【标题+全文搜索】
$sqlSegment = "and ( title like '%{$keyword}%' or content like '%{$keyword}%' ) order by date desc";注意:全文检索对服务器会造成一定的压力,特别是你的文章特别多的时候,是不建议的,万一当机了就不好玩了,是吧。
$sqlSegment = "and (title ='{$keyword}') order by date desc";
留言/评论:◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。