php中的无限级分类,是我们php常用的

来源:互联网 发布:古木夕羊淘宝代购 编辑:程序博客网 时间:2024/04/30 05:19

 

上面效果图有了,数据也有了,下面贴出代码,请看!

<?phpheader("Content-Type:text/html; charset=utf-8");$linkID=mysql_connect("localhost","root","123456") or die("连接出错");mysql_select_db("demo",$linkID);function getTree($fid){global $str;$sql="select id,title,title from tree where pid=$fid";$result=mysql_query($sql);if($result && mysql_affected_rows()){$str.="<ul>";while($row=mysql_fetch_array($result)){$str.="<li>".$row['id']."--".$row['title']."</li>";getTree($row['id']);}$str.="</ul>";}return $str;} echo getTree(0);?>


 

原创粉丝点击