如何在php&ajax中搜索列

问题描述

| 我一直在尝试为我的数据库创建搜索引擎,但是没有运气 我想做的就是在多列中搜索数据库, 我尝试了
$select = \"SELECT * FROM letter_cast WHERE name LIKE \'%\".$_GET[\'content\'].\"%\' AND title LIKE \'%\".$_GET[\'content\'].\"%\'\";
但是没有运气,我想整个脚本有一些不同,这里是脚本(我已经从这里下载了)
    // You can do anything with the data. Just think of the possibilities!
include(\'conn.PHP\');

$strlen = strlen($_GET[\'content\']);
$display_count = $_GET[\'count\'];
$select = \"SELECT * FROM letter_cast WHERE name LIKE \'%\".$_GET[\'content\'].\"%\' AND title LIKE \'%\".$_GET[\'content\'].\"%\'\";
$res = MysqL_query($select);
$rec_count = MysqL_num_rows($res);
if($display_count)
{
  echo \"There are <font color=\'red\' size=\'3\'>\".$rec_count.\"</font> matching records found.Click Search to view result.\";
}
    

解决方法

        除了您的脚本完全不安全之外,如果您需要记住某些列,则AND逻辑会限制您的查询,您需要使用OR。