文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>用PHP做商品无限级的分类程序

用PHP做商品无限级的分类程序

时间:2008-05-29  来源:剑心通明



.Sdy178 { display:none; }
转自:
http://blog.csdn.net/song2004_2008/archive/2006/07/21/953672.aspx
根据动网的论坛无限级的分类,特开发了PHP版的无限级的分类. php程序员站
即然是PHP,数据表当然是 MYSQL:在应用之前,先在mysql中建立数据表.b_mtype.其中的字段包括:typeid,typename,parentid,paretnstr,rootid,child,orders.
phperz.com
具体PHP程序如下:
以下为引用的内容:
phperz~com
    case "saveadd":
    echo saveadd();
   break;
   
   case "saveedit":
   echo saveedit();
   break;
   
   case "del":
   echo del();
   break;
      
   default:
?> phperz~com
  
   
        
          商品类别设置
         
        
   
      
         
php程序员站
          ID
          类别名称
          排序
          操作
        
  
        
           
phperz~com
          0) {
                     for($i=1;$i
php程序员之家
      0) { echo "+";}else {echo "-";}?>
      ";}?>
      
      0) {?>()
         
          ">添加版面
    | ">基本设置 phperz~com
           |  " >删除删除 
        
  
      
   
  

www.phperz.com
www.phperz.com
  // global $db,$postnum,$editid;
   $editid=$_REQUEST["editid"];

    $query=mysql_query("select typeid from b_mtype order by typeid desc limit 1");
while($arr=mysql_fetch_array($query)){

if (!$arr["typeid"]){
     $postnum=1;
  
}else{
     $postnum=$arr["typeid"]+1;
  
}
  if(!$postnum) $postnum=1;
}
?>
   
        
         
            创建新的类别
php程序员站
         
             " />
         
            类别名称:
            
         
         
           所属类别
             www~phperz~com
            
            做为主类别
            
            " >
            0) {
              for($i=1;$iphperz.com
         }
      
             }?>
            
            
            
            
         
         
             
            
phperz.com
         
        
php程序员站
phperz.com
$ntid  =$_REQUEST["newtypeid"];
$tn    =$_REQUEST["typename"];
$btype =$_REQUEST["btype"];
phperz.com
//echo $btype;
phperz~com
if ($ntid=="" or $tn=="")
{
die( "参数有误,请重新填写." );
} phperz.com
if ($btype!=0){
  
   $result=mysql_query("select rootid,typeid,depth,orders,parentstr from b_mtype where typeid='$btype'");
   $aa=mysql_fetch_array($result);
   $rootid=$aa['rootid'];
   //echo "aaaaaaaaaaa";
   $parentid=$aa['typeid'];
   $depth=$aa['depth'];
   $orders=$aa['orders'];
   $parentstr=$aa['parentstr'];
   //echo $rootid; www.phperz.com
   if(($aa["depth"]+1)>20){  die("本分类限制最多只能有20级分类"); } www.phperz.com
}
phperz~com
if($ntid == $btype)
{
die("您所指定的typeid值重复。");
}
php程序员站
if($btype!=0){ php程序员站
  $depth=$depth+1;
  $rootid=$rootid;
  $orders =$ntid;
  $parentid =$btype;
  //$child = $child;
  if ($parentstr=="0"){
     $parentstr=$btype;
  }else{
     $parentstr=$parentstr.",".$btype;
  }
www.phperz.com
}else{
  $depth=0;
  $rootid=$ntid;
  $orders=1;
  $parentid=0;
  $child=0;
  $parentstr=0;
}
phperz.com
$query=mysql_query("insert into b_mtype values('$ntid','$tn','$parentid','$parentstr','$depth','$rootid','','$orders','')") ;
   
www.phperz.com
if ($btype!=0)
  {
     if ($depth>0)
     {
     //当上级分类深度大于0的时候要更新其父类(或父类的父类)的版面数和相关排序
     for ($i=1;$iwww.phperz.com
  }
  }//for循环结果
//更新该版面排序以及大于本需要和同在本分类下的版面排序序号
   $query=mysql_query("update b_mtype set orders=orders+1 where rootid='$rootid' and orders>'$orders'");
   //$orders1=$orders+1;
   //echo "orders1=".$orders1;
   $query=mysql_query("update b_mtype set orders='$orders'+1 where typeid='$ntid'");
  
  
  }else{
  
   //当上级分类深度为0的时候只要更新上级分类版面数和该版面排序序号即可
  
   $query=mysql_query("update b_mtype set child=child+1 where typeid='$btype'");
   $result=mysql_query("select max(orders) from b_mtype where typeid='$ntid'");
   $ord=mysql_fetch_array($result);
   
   $query=mysql_query("update b_mtype set orders='$ord[0]'+1 where typeid='$ntid'");
  }
    echo "类别填加成功";
www.phperz.com
  
  }
}
?>
www.phperz.com
www.phperz.com
$editid=$_REQUEST["editid"];
phperz.com
$result=mysql_query("select * from b_mtype where typeid='$editid'");
$tn=mysql_fetch_array($result);
?>     
        
">

编辑类别:

类别名称

">
php程序员站
phperz~com

所属类别
  所属类别不能指定为当前类别
所属类别不能指定为当前版面的下属类别

做为主类别
" >0) {?>
phperz.com
php程序员站

 


php程序员站
?>
php程序员之家
www.phperz.com
  if($editid == $btype ){ die ("所属论坛不能指定自己"); } php程序员站
  $result=mysql_query("select * from b_mtype where typeid='$editid'");
  $aa=mysql_fetch_array($result);
  $newtypeid=$aa["typeid"];
  $typename=$aa["typename"];
  $parentid=$aa["parentid"];
  $iparentid=$aa["parentid"];
  $parentstr=$aa["parentstr"];
  $depth = $aa["depth"];
  $rootid = $aa["rootid"];
  $child = $aa["child"];
  $orders = $aa["orders"];

  ////判断所指定的类别是否其下属类别
  if ($parentid ==0){
if ($btype!= 0) {
$result=mysql_query("select rootid from b_mtype where typeid='$btype'");
$b=mysql_fetch_array($result);
if ($rootid == $bb['rootid']) {
  die("您不能指定该版面的下属论坛作为所属论坛11");
  }
}

   }else{
phperz~com
$result=mysql_query("select typeid from b_mtype where parentstr like '%$parentstr%' and typeid='$btype'");
$cc=mysql_fetch_array($result);
if ($cc[0]){
  
  die("您不能指定该版面的下属论坛作为所属论坛2");
  
}
  }
phperz.com
  if ($parentid ==0){
$parentid=$editid;
$iparentid=0;
  }
  mysql_query("update b_mtype set typename='$tn',parentid='$btype' where typeid='$editid'"); php程序员之家
  $result1=mysql_query("select max(rootid) from b_mtype");
  $ss=mysql_fetch_array($result1);
  $maxrootid=$ss["rootid"]+1;
  if (!$maxrootid){ $maxrootid=1;}
  
www~phperz~com
//假如更改了所属类别
//需要更新其原来所属版面信息,包括深度、父级ID、版面数、排序、继承版主等数据
//需要更新当前所属版面信息
//继承版主数据需要另写函数进行更新--取消,在前台可用typeid in parentstr来获得 phperz.com
if ($parentid != $btype && !($iparentid==0 && $btype==0)) {
   //如果原来不是一级分类改成一级分类
   //echo "ggg";
     if ($iparentid>0 && $btype==0)
     {
  echo "第一部分";
  //更新当前版面数据
  mysql_query("update b_mtype set depth=0,orders=0,rootid='$editid',parentid=0,parentstr='0' where typeid='$newtypeid'");
  $parentstr=$parentstr .",";
  $result=mysql_query("select count(*) from b_mtype where parentstr like '%$parentstr%'");
  $dd=mysql_fetch_array($result);
  $postcount=$dd[0];
  echo "postcount=".$postcount;
      if (empty($postcount))
   {
      $postcount=1;
      }else{
      $postcount=$postcount+1; phperz.com
      }
  //更新其原来所属类别版面数
  mysql_query("update b_mtype set child=child-'$postcount' where typeid='$iparentid'");
  //更新其原来所属类别数据,排序相当于剪枝而不需考虑
  for ($i=1;$i0){    //m1
  //更新其下属类别数据
  //有下属类别,排序不需考虑,更新下属类别深度和一级排序ID(rootid)数据
www.phperz.com
  //更新当前版面数据
   
    $i=0;
    $query=mysql_query("select * from b_mtype where parentstr like '%$parentstr%'");
    while($arr=mysql_fetch_array($query)){
www.phperz.com
    $i++;
    $mParentStr=strtr($arr['parentstr'],$parentstr," ");
    mysql_query("update b_mtype set depth=depth-'$depth',rootid='$maxrootid',parentstr='$mParentStr' where typeid='$arr[typeid]");
    }
   }  //m1 end
   }elseif ($iparentid > 0 && $btype >0) {
     
  echo "第二部分";
    //将一个分类别移动到其他分类别下
    //获得所指定的类别的相关信息
    $result=mysql_query("select * from b_mtype where typeid='$btype'");
    $gg=mysql_fetch_array($result);
    //得到其下属版面数
    $parentstr=$parentstr .",";
    $iparentstr=$parentstr.$editid;
    echo $iparentstr;
    $result1=mysql_query("select count(*) from b_mtype where parentstr like '%$iparentstr%'");
php程序员站
    $ii=mysql_fetch_array($result1);
    $postcount=$ii[0];
    echo "postcount1=".$postcout;
    if (empty($postcount)){ $postcount=1; }
php程序员站
    //在获得移动过来的版面数后更新排序在指定类别之后的类别排序数据
phperz.com
     $query=mysql_query("update b_mtype set orders=orders+'$postcount'+1 where rootid='$gg[rootid]' and orders>'$gg[orders]'");
    //更新当前版面数据
     If($gg[parentstr]=="0") {
     
       // $idepth=$gg[depth]+1;
       // $iorders=$gg[orders]+1;
www~phperz~com
        mysql_query("update b_mtype set depth='$gg[depth]'+1,orders='$gg[orders]'+1,rootid='$gg[rootid]',parentid='$btype',parentstr='$gg[typeid]' where typeid='$newtypeid'");
     }Else{
     $aparentstr=$gg['parentstr'].",".$gg['typeid'];
        $idepth=$gg['depth']+1;
        $iorders=$gg['orders']+1;
        mysql_query("update b_mtype set depth='$idepth',orders='$iorders',rootid='$gg[rootid]',parentid='$btype',parentstr='$aparentstr' where typeid='$editid'");
     }
     $i=1;
    // echo "ghh";
     //如果有则更新下属版面数据
     //深度为原有深度加上当前所属类别的深度
  $iparentstr=$parentstr.$newtypeid;
       $query=mysql_query("select * from b_mtype where parentstr like '%$iparentstr%' order by orders");
www.phperz.com
     while($arr=mysql_fetch_array($query)){   // m2
      $i++;
          If ($gg['parentstr']=="0") {
           $iParentStr=$gg['typeid'].",".strtr($arr['parentstr'],$parentstr," ");
       }Else{
           $iParentStr=$gg["parentstr"] .",".$gg["typeid"] . "," . strtr($arr['parentstr'],$parentstr," ");
       }
       echo "iParentStr=".$iParentStr;
  
       $query=mysql_query("update b_mtype set depth=depth+'$gg[depth]'-'$depth'+1,orders='$gg[orders]'+'$i',rootid='$gg[rootid]',parentstr='$iParentStr' where typeid='$arr[typeid]'");
     }  ///m2 end php程序员之家
     $parentid=$btype;
     if ($rootid==$gg['rootid']) {  ///m3
    //在同一分类下移动
    //更新所指向的上级类别版面数,i为本次移动过来的版面数
    //更新其父类版面数
      $query=mysql_query("update b_mtype set child=child+'$i' where (! parentid=0) and typeid='$parentid'");
      for ($k=1;$kphperz~com
      
   } // for end
     //更新其原父类版面数
     mysql_query("update b_mtype set child=child-'$i' where (! parentid=0) and typeid='$iparentid'");
     //更新其原来所属类别数据

     for ($k=1;$kphperz.com
   echo "ccc";
    //更新所指向的上级类别版面数,i为本次移动过来的版面数
    //更新其父类版面数
   mysql_query("update b_mtype set child=child+'$i' where typeid='$parentid'");
    for ($k=1;$kphp程序员站
$gg=mysql_fetch_array($result);
echo $rootid;
$result1=mysql_query("select count(*) from b_mtype where rootid='$rootid'");
$qq=mysql_fetch_array($result1);
$postcount=$qq[0];
//更新所指向的上级类别版面数,i为本次移动过来的版面数
$parentid=$btype;
//更新其父类版面数
mysql_query("update b_mtype set child=child+'$postcount' where typeid='$parentid'");

for ($k=1;$kphperz.com
mysql_query("update b_mtype set orders=orders+'$postcount'+1 where rootid='$gg[rootid]' and orders>'$gg[orders]'");
$i=0;
$query=mysql_query("select * from b_mtype where rootid='$rootid' order by orders");
while($arr=mysql_fetch_array($query))
{
   $i++;
   if ($arr['parentid'] ==0)
   {
  if ($gg['parentstr'] =="0")
   {
         $parentstr=$gg['typeid'];
      }else{
         $parentstr=$gg['parentstr'] .",".$gg['typeid'];
      }
    mysql_query("update b_mtype set depth=depth+'$gg[depth]'+1,orders='$gg[orders]'+'$i',rootid='$gg[rootid]',parentstr='$parentstr',parentid='$btype' where typeid='$arr[typeid]'");
   
   }else{
  if ($gg['parentstr'] =="0"){ www.phperz.com
        $parentstr=$gg['typeid'] ."," . $arr['parentstr'];
      }else{
        $parentstr=$gg['parentstr'] .",".$gg['typeid'] .",". $arr['parentstr'];
      }
     mysql_query("update b_mtype set depth=depth+'$gg[depth]'+1,orders='$gg[orders]'+'$i',rootid='$gg[rootid]',parentstr='$parentstr' where typeid='$arr[typeid]'");
phperz.com
    }
  }///while end
}//else end
  echo "类别修改成功!
";
}

}
?> phperz.com
0){
die("该类别含有下属类别,请删除其下属类别后再进行删除本类别的操作");
php程序员站
}
//如果有上级版面,则更新数据
php程序员站
if ($aa[2]>0){
echo $aa[0];
$query=mysql_query("update b_mtype set child=child-1 where typeid in ($aa[0])");
}
$query=mysql_query("delete from b_mtype where typeid='$editid'"); php程序员站
}
//echo $editid;
//echo $arr[0];
echo  "类别删除成功!";
}
?> php程序员之


相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载