当前位置:首页 > PHP教程 > php应用 > 列表

php+mysql数据库实现无限分类的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-03 15:49:35 浏览: 评论:0 

这篇文章主要介绍了php+mysql数据库实现无限分类的方法,包含完整的节点操作技巧以及相应的应用方法实例,是非常实用的技巧,需要的朋友可以参考下

本文实例讲述了php+mysql数据库实现无限分类的方法。分享给大家供大家参考。具体分析如下:

这款php无限分类代码比较完整理包括了数据库是mysql的,有增加、删除、编辑、移动的功能,同时还提供数据库sql表结构.代码如下:

  1. //连接数据库 
  2. $link = mysql_connect('localhost','root',''or die(mysql_error()); 
  3. mysql_select_db('class',$link)or die(mysql_error()); 
  4. mysql_query("set names gbk"); 
  5. //无限分类类库 
  6. class sortclass{ 
  7. var $data = array(); 
  8. var $child = array(-1=>array()); 
  9. var $layer = array(-1=>-1); 
  10. var $parent = array(); 
  11. var $link; 
  12. var $table
  13. function sortclass($link, $table){ 
  14. $this->setnode(0, -1, '顶极节点'); 
  15. $this->link = $link; 
  16. $this->table = $table
  17. $node = array(); 
  18. $results = mysql_query("select * from $this->table",$this->link); 
  19. while($node = mysql_fetch_array($results)){ 
  20. $this->setnode($node['id'],$node['f_id'],$node['name']); 
  21. function setnode ($id, $parent, $value){ 
  22. $parent = $parent?$parent:0; 
  23. $this->data[$id] = $value; 
  24. $this->child[$id] = array(); 
  25. $this->child[$parent][] = $id; 
  26. $this->parent[$id] = $parent; 
  27. $this->layer[$id] = !isset($this->layer[$parent])? 0 : $this->layer[$parent] + 1; 
  28. function getlist (&$tree, $root= 0){ 
  29. foreach ($this->child[$root] as $key=>$id){ 
  30. $tree[] = $id; 
  31. if ($this->child[$id]) $this->getlist($tree, $id); 
  32. function getvalue ($id){return $this->data[$id];} 
  33. function getlayer ($id, $space = false){ 
  34. return $space?str_repeat($space, $this->layer[$id]):$this->layer[$id]; 
  35. function getparent ($id){return $this->parent[$id];} 
  36. function getparents ($id){ 
  37. while ($this->parent[$id] != -1){ 
  38. $id = $parent[$this->layer[$id]] = $this->parent[$id]; 
  39. ksort($parent); 
  40. reset($parent); 
  41. return $parent; 
  42. function getchild ($id){return $this->child[$id];} 
  43. function getchilds ($id = 0){ 
  44. $child = array($id); 
  45. $this->getlist($child, $id); 
  46. return $child; 
  47. function addnode($name,$pid){ 
  48. //echo "insert into $this->table (`f_id`,`name`) values ('$pid','$name')";exit; 
  49. mysql_query("insert into $this->table (`f_id`,`name`) values ('$pid','$name')",$this->link); 
  50. function modnode($cid, $newname){ 
  51. mysql_query("update $this->table set `name`='$newname' where `id` = $cid",$this->link); 
  52. function delnode($cid){ 
  53. $allchilds = $this->getchilds($cid); 
  54. $sql =''
  55. if(emptyempty($allchilds)){ 
  56. $sql = "delete from $this->table where `id` = $cid"
  57. }else
  58. $sql = 'delete from '.$this->table.' where `id` in ('.implode(',',$allchilds).','.$cid.')'
  59. mysql_query($sql,$this->link); 
  60. function movenode($cid, $topid){ 
  61. mysql_query("update $this->table set `f_id`=$topid where `id` = $cid", $this->link); 
  62. //函数 
  63. function back(){ 
  64. echo '<script language="网页特效">window.location.href="news.class.php?"+new date().gettime();</script>'
  65. exit; 
  66. //生成select 
  67. function makeselect($array,$formname){ 
  68. global $tree; 
  69. $select = '<select name="'.$formname.'">'
  70. foreach ($array as $id){ 
  71. $select.='<option value="'.$id.'">'.$tree->getlayer($id, '|-').$tree->getvalue($id)."</option>"
  72. return $select.'</select>'
  73. $tree = new sortclass($link,'`p_newsclass`'); 
  74. $op = !emptyempty($_post['op']) ? $_post['op'] : $_get['op']; 
  75. if(!emptyempty($op)){ 
  76. if($op=='add'){ 
  77. $tree->addnode($_post['cname'],$_post['pid']); 
  78. back(); 
  79. if($op=='mod'){ 
  80. $tree->modnode($_post['cid'],$_post['cname']); 
  81. back(); 
  82. if($op=='del'){ 
  83. $tree->delnode($_get['cid']); 
  84. back(); 
  85. if($op=='move'){ 
  86. $tree->movenode($_post['who'],$_post['to']); 
  87. back(); 
  88. $category = $tree->getchilds(); 
  89. ?> 

前台调用实例代码如下:

  1. <style type="text/css"
  2. body{font-size:12px;} 
  3. ul{list-style:none;} 
  4. a{cursor:pointer;} 
  5. </style> 
  6. <script language="javascript"
  7. function $(e){return document.getelementbyid(e);} 
  8. function mod(cid){ 
  9. $('cid').value=cid; 
  10. $('op').value='mod'
  11. $('name').style.border='1px solid red'
  12. </script> 
  13. <form action="" method="post"
  14. 名称:<input type="text" id="name" name="cname" /> 添加到:<?=makeselect($category,'pid')?><br /> 
  15. <input type="hidden" id="op" name="op" value="add" /> 
  16. <input type="hidden" id="cid" name="cid" /> 
  17. <input type="submit" value="submit" /> 
  18. </form> 
  19. <h3>移动分类</h3> 
  20. <form action="" method="post"
  21. <?=makeselect($category,'who')?> gt;移动到:<?=makeselect($category,'to')?> 
  22. <input type="hidden" id="op" name="op" value="move" /> 
  23. <input type="submit" value="submit" /> 
  24. </form> 
  25. <ul> 
  26. <?php 
  27. foreach ($category as $id){ 
  28. echo '<li>'.$tree->getlayer($id'|- ').$tree->getvalue($id).' <a href="time.php?op=del&cid='.$id.'">del</a> <a onclick="mod('.$id.')">edit</a> </li>'
  29. ?> 
  30. </ul> 

用phpmyadmin导入此数据库就ok了,实例代码如下:

  1. -- phpmyadmin sql dump 
  2. -- version 3.2.4 
  3. -- 
  4. -- 主机: localhost 
  5. -- 生成日期: 2010 年 07 月 02 日 03:02 
  6. -- 服务器版本: 5.1.41 
  7. -- php 版本: 5.3.1 
  8. set sql_mode="no_auto_value_on_zero"
  9.  
  10. /*!40101 set @old_character_set_client=@@character_set_client */; 
  11. /*!40101 set @old_character_set_results=@@character_set_results */; 
  12. /*!40101 set @old_collation_connection=@@collation_connection */; 
  13. /*!40101 set names utf8 */; 
  14. -- 
  15. -- 数据库: `class` 
  16. -- 
  17. -- -------------------------------------------------------- 
  18. -- 
  19. -- 表的结构 `p_newsclass` 
  20. -- 
  21. create table if not exists `p_newsclass` ( 
  22.   `id` int(7) not null auto_increment, 
  23.   `f_id` int(7) not null
  24.   `namevarchar(255) not null
  25.   primary key (`id`) 
  26. ) engine=innodb  default charset=utf8 auto_increment=10 ; 
  27. -- 
  28. -- 转存表中的数据 `p_newsclass` 
  29. -- 
  30. insert into `p_newsclass` (`id`, `f_id`, `name`) values 
  31. (3, 0, '中国'), 
  32. (4, 3, '福建'), 
  33. (5, 4, '龙岩市'), 
  34. (7, 4, '厦门市'), 
  35. (9, 5, '漳平市'); 
  36. /*!40101 set character_set_client=@old_character_set_client */; 
  37. /*!40101 set character_set_results=@old_character_set_results */; 
  38. /*!40101 set collation_connection=@old_collation_connection */; 

希望本文所述对大家的PHP+mysql程序设计有所帮助。

Tags: php+mysql无限分类

分享到: