Home > php教程 > php手册 > php标签云制作数据表的结构和查询方法

php标签云制作数据表的结构和查询方法

WBOY
Release: 2016-06-13 09:26:11
Original
828 people have browsed it

php标签云制作——数据表的结构和查询方法

例如:如果需要某篇文章中包含tag表中的id为1,2,3的tagname,也就是id为1,2,3的标签,

 

则在添加文章的时候用

 

 

 

$result=implode(",", $_POST['tagid']);//把获取的checkbox的数组用逗号进行分割

$_POST['tagid']为获取前台的复选框的数组,前台html部分代码为:

//这里是thinkphp的写法,原生的写法大同小异

这样存储文章的时候,只需要mood表中的tag=$result即可。

 

 

 

数据已经存好了,接下来我们需要实现的是,点击相应的标签查询出所有包含该标签的文章。

 

 

 

如果我们需要显示某篇文章所包含的所有标签,我们要先获取该片文章的id,查询出该篇文章的tag,

 

用分割函数

 

$taglist = explode(',',$source); //$source为文章的tag值,例如:把tag=“1,2,3”分割为一个数组

然后在前台可以这样写:

 

for($index=0;$index

            $tagsa=$tagdata->where('id=%d',$taglist[$index])->select();

            echo "".($tagsa[0]['tagname'])."   " ;

              }

循环输出tagname,url传tag表的id值,接下来只需要在接收url值的地方写一个模糊查询的sql,文章表的tag like %id%。

 

 

 

注:以上的查询语句都是thinkphp的语法。

 

这样用模糊查询会出现一个问题,因为例如:文章表的其中一个tag字段可能包含1,5    另一个tag字段可能包含10,23

 

如果查询tag like %1%的时候会查询出  tag字段为1,5   和   tag字段为10,23   的两篇文章。即使like条件为%1,%或者%,1,%也是不行的。

 

因此这里我的写法是在前台写php代码,用两个嵌套的for循环来解决,如下:

 

复制代码

$map['tag'] = array('like','%'.tagid.'%');

            //dump($selecttag[$i]['id']);$arr_mood=$mood->where($map)->select();for($a=0;$a

                $source=$arr_mood[$a]['tag'];

                $taglist = explode(',',$source);

                

                

                for($index=0;$index

                    

                    if(tagid==$taglist[$index]){//当传过来的tagid在文章的tag字段中存在,则输出。

                            dump($arr_mood[$a]['title']);//这里可以用echo输出至前台

                    }

                    

                } 

                

                

            }

Related labels:
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