PHP简单实现无限级分类的方法

 2025-01-15  阅读 392  评论 8  点赞 207

摘要:本文实例讲述了php简单实现无限级分类的方法。分享给大家供大家参考,具体如下: 数据库结构: create table if not exists `city` ( `id` int(11) not null auto_increment, `name` varchar(30) character set utf8 collate utf8_unicode_ci not null default '0', `parenti

本文实例讲述了php简单实现无限级分类的方法。分享给大家供大家参考,具体如下:

PHP简单实现无限级分类的方法

数据库结构:


create table if not exists `city` (
 `id` int(11) not null auto_increment,
 `name` varchar(30) character set utf8 collate utf8_unicode_ci not null default '0',
 `parentid` int(11) not null default '0'
 primary key (`id`)
) engine=myisam default charset=latin1 auto_increment=7 ;

php文件:


$db=new db($config['host'],$config['user'],$config['password'],$config['port'],$config['db'],$config['charset']);
function findcity($table,$id=0,$level=1){
  global $db;
  $findsql="select id,name,parentid from $table where parentid={$id} order by id";
  $findresult=$db->getarray($findsql);
  $num=$db->numrows;
  $logostr="|";
  for($i=0;$i<$level;$i++){
  $logostr.="--";
  }
   if($num!=0){
   for($j=0;$j<$num;$j++){
     echo "<option value={$findresult[$j]['id']}>{$logostr}{$findresult[$j][name]}</option>";
        findcity($table,$findresult[$j]['id'],$level+1);
    }
  }
}
findcity(city);

更多关于php相关内容感兴趣的读者可查看本站专题:《php数组(array)操作技巧大全》、《php排序算法总结》、《php常用遍历算法与技巧总结》、《php数据结构与算法教程》、《php程序设计算法总结》、《php数学运算技巧总结》、《php正则表达式用法总结》、《php运算与运算符用法总结》、《php字符串(string)用法总结》及《php常见数据库操作技巧汇总》

希望本文所述对大家php程序设计有所帮助。


标签:phpphp教程

评论列表:

  •   weihang233
     发布于 3天前回复该评论
  • 又学到了新知识!
  •   xixi2
     发布于 2天前回复该评论
  • 写的很不错,学到了!
显示更多评论

发表评论:

管理员

承接各种程序开发,外贸网站代运营,外贸网站建设等项目
  • 内容2460
  • 积分67666
  • 金币86666

Copyright © 2024 LS'Blog-保定PHP程序员老宋个人博客 Inc. 保留所有权利。 Powered by LS'blog 3.0.3

页面耗时0.0279秒, 内存占用1.94 MB, 访问数据库29次

冀ICP备19034377号