zoukankan      html  css  js  c++  java
  • php修改排序,上移下移

    /**
    
     $UpDown //移动方向,up或down
    
     $table //表名
    
     $id //当前移动的ID
    
     $id_col //ID字段的名称
    
     $oc_col //排序字段的名称
    
     $where //条件
    
    */
    
    function MoveUpDown($UpDown,$table,$id,$id_col='id',$oc_col='OrderColumn',$where='')
     {
       if($UpDown=='up'){$op='<';$desc='desc';}else{$op='>';$desc='';}
       if($where!='') $where="$where and";
       $rs=mysql_query("select $id_col,$oc_col from $table where $where {$oc_col}{$op}=(select $oc_col from $table where $id_col=$id) order by $oc_col $desc limit 2");
       if($row=mysql_fetch_array($rs)){$id1=$row[$id_col];$oc1=$row[$oc_col];}
       if($row=mysql_fetch_array($rs)){$id2=$row[$id_col];$oc2=$row[$oc_col];}
       mysql_free_result($rs);
       if(isset($id1)){
        mysql_query("update $table set $oc_col= ".$oc2." where $id_col=$id1");
       }
       if(isset($id2)){
        mysql_query("update $table set $oc_col= ".$oc1." where $id_col=$id2");
       }
       echo "<script type='text/javascript'>window.location.href='".$_SERVER['PHP_SELF']."';</script>";exit; //移动后刷新页面
     }
     
    

      

    编辑器加载中...

  • 相关阅读:
    命名规则
    数据库的基本概念(三大范式,数据)
    集合的排序
    装箱拆箱
    异常处理
    单行函数
    表管理
    创建表,插入列....
    PL/SQL 块
    单行函数的案例
  • 原文地址:https://www.cnblogs.com/freespider/p/2386049.html
Copyright © 2011-2022 走看看