博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php无限极分类
阅读量:6156 次
发布时间:2019-06-21

本文共 764 字,大约阅读时间需要 2 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
$conn 
= mysql_connect(
"localhost"
,
"root"
,
"1234"
);
mysql_select_db(
"laaho_caike"
);
 
$option 
= getTree(0);
$option 
"<select name='term'>" 
$option 
"</select>"
;
echo 
$option
;  
 
function 
getTree(
$id
,
$spac
=0) {
    
//static $str;
    
$spac 
$spac 
+ 2;
    
static 
$str
;
    
$sql 
"select * from videoterm where parent_id='" 
$id 
"'"
;
    
$res 
= mysql_query(
$sql
);
    
//$arr = mysqli_fetch_assoc($res);
     
    
while 
(
$arr
=mysql_fetch_assoc(
$res
)) {
        
$str 
.= 
"<option value=" 
$arr
[
'Id'
] . 
">" 
str_repeat
(
'&nbsp;'
,
$spac
) . 
"|--" 
$arr
[
'termname'
] . 
"</option>"
;
        
getTree(
$arr
[
'Id'
],
$spac
);
         
    
}
     
    
return 
$str
;
}
?>

效果如图

本文转自  陈小龙哈   51CTO博客,原文链接:http://blog.51cto.com/chenxiaolong/1720847

转载地址:http://bkdfa.baihongyu.com/

你可能感兴趣的文章
健身减脂报告贴
查看>>
9月--菜鸟吐槽日志
查看>>
关于Django启动创建测试库的问题
查看>>
无法打开物理文件 "X.mdf"。操作系统错误 5:"5(拒绝访问。)"。 (Microsoft SQL Server,错误: 5120)解决...
查看>>
HBase伪分布式安装
查看>>
深入浅出Node.js (附录A) - 安装Node
查看>>
基础知识(2)- Java程序设计环境
查看>>
购物商城Web开发第十八天
查看>>
GridView 的一些信息
查看>>
js 中的闭包
查看>>
Linux学习笔记07—mysql的配置
查看>>
python中硬要写抽象类和抽象方法
查看>>
mybatis 模糊查询 like的三种方式
查看>>
oracle包详解(二)【weber出品】
查看>>
FreeModbus undefined reference to `pthread_create'
查看>>
居中对齐
查看>>
c#程序员面试题汇总,方便自己记录
查看>>
周星驰影片经典台词之《唐伯虎点秋香》
查看>>
EasyUI的datagrid分页
查看>>
自己动手写操作系统 环境配置与最小的操作系统
查看>>