我有一个小任务,我有一个mysql表“blog”。它包含一个列“ID_CAT”。 ID_CAT的每个字段包含一个单独文章的类别的不同值,如“22,44,33,55”。 我想根据选择的类别过滤博客的帖子。我将ID_CAT选择传递到URL并在包含的页面中使用GET方法
<a class="rotated_link" href="?cat='.$categorie->getIDCategorie().'">'.$categorie->getNomCategorie().'</a>
然后包含的页面
$id_categorie = $_GET["cat"];
if (isset($id_categorie)) {
foreach(Article::getAllArticlebycategorie($id_categorie) as $all){
$article= new Article($all->ID_BLOG);
$img=Image::getImageByArticle($article->getIDarticle());
$tblCat=explode(',',$article->getIDCategorie());
echo '<li class="li_blog_post">';
echo'<img class="img_post_mini" src="img/file/'.$img.'" style="width:100%; height:150px; border:1PX solid #9D9D9D;" />';
echo'<span class="post_title0">'.$article->getTitlearticle().'</span>';
echo'<span class="tag_post"><img src="img/tag.png" style="width:16px; height:16px;"/>';
foreach($tblCat as $catt){
$categoriea = new Categorie($catt);
echo '<a class="tag_lable" href="">'.$categoriea->getNomCategorie().'</a> </span>';
}
echo'<p class="post_prev">'.substr($article->getArticle(), 0, 410).' ...</p>';
echo'<span class="date">le '.$article->getDatearticle().'</span> <span class="view_more"><a class="test" href="?article='.$article->getIDarticle().'">voire les détails</a></span>';
echo '</li>';
}
}
问题是当我选择例如ID_CAT = 4时,函数getAllArticlebycategorie仅在数字4是列ID_CAT(4,33,50)中的第一个值时返回帖子 - &gt;选中(3,4,10) - &gt;未选中的 。 功能:
public static function getAllArticlebycategorie($id_categorie){
global $db;
$req = $db->prepare('SELECT * FROM blog WHERE ID_CAT='.$id_categorie);
$req->execute();
return $req->fetchAll(PDO::FETCH_OBJ);
}
答案 0 :(得分:1)
使用FIND_IN_SET()
,因为您正在使用PDO利用参数化查询。
因此改变
$req = $db->prepare('SELECT * FROM blog WHERE ID_CAT='.$id_categorie);
$req->execute();
到
$req = $db->prepare("SELECT * FROM blog WHERE FIND_IN_SET('$id_categorie', ID_CAT)");
$req->execute(array(':id_categorie' => $id_categorie));
SQLFiddle ,您可以使用FIND_IN_SET()