-
...查看全部
-
...查看全部
-
全路径表设计查看全部
-
全路径无限分类查看全部
-
递归实现子父类方法无限极分类数据表设计查看全部
-
常用两种方式实现无限极分类查看全部
-
什么是全路径无限分类?查看全部
-
递归无限级分类数据表设计查看全部
-
什么是无限分类?查看全部
-
function getList($pid=0,&$result=array(),$space=0){ $space+=2; $res=mysql_query("select * from deepcate where pid=$pid"); while ($row=mysql_fetch_assoc($res)) { $row['catename']=str_repeat(" ", $space).'|--'.$row['catename']; $result[]=$row; getList($row['id'],$result,$space); } return $result; } $result=getList(); //print_r($result()); function displayCate($result){ $str="<select name='cate'>"; foreach($result as $key=>$val){ $str.= "<option>{$val['catename']}</option>"; } return $str.="</select>"; } echo displayCate($result);查看全部
-
<?php header("content-type:text/html;charset=utf-8"); @mysql_connect("localhost","root",""); mysql_select_db("demo"); mysql_query("set names utf8"); $sql = " CREATE TABLE `deepcate` ( `id` INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, `pid` INT UNSIGNED NOT NULL, `catename` VARCHAR(30) NOT NULL, `cateorder` INT UNSIGNED NOT NULL DEFAULT '0', `createtime` INT(10) NOT NULL )"; mysql_query($sql); $sql1=" INSERT INTO `deepcate`(`id`,`pid`,`catename`,`cateorder`,`createtime`) VALUES (1,0,'新闻',0,0), (2,0,'图片',0,0), (3,1,'国内新闻',0,0), (4,1,'国际新闻',0,0), (5,3,'北京新闻',0,0), (6,4,'美国新闻',0,0), (7,2,'美女图片',0,0), (8,2,'风景图片',0,0), (9,7,'日韩明星',0,0), (10,9,'日本AV',0,0); "; mysql_query($sql1);查看全部
-
无限分类技术 1、以父ID实现 2、以全路径实现查看全部
-
递归查看全部
-
递归查看全部
-
krsort. str_repeat查看全部
举报
0/150
提交
取消