当前位置:首页 > PHP教程 > php类库 > 列表

php+mysql数据库无限分类代码

发布:smiling 来源: PHP粉丝网  添加日期:2014-09-11 22:53:34 浏览: 评论:0 

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

Tags: php+mysql 数据库无限分类

分享到: