首页 > Web开发 > 详细

php无限极分类

时间:2015-12-08 18:36:30      阅读:224      评论:0      收藏:0      [点我收藏+]
<?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;
}
?>

效果如图

技术分享

php无限极分类

原文:http://chenxiaolong.blog.51cto.com/8786841/1720847

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!