当前位置: 代码迷 >> 综合 >> phpnbsp;mysql_fetch_array()函数…
  详细解决方案

phpnbsp;mysql_fetch_array()函数…

热度:35   发布时间:2024-01-18 12:04:23.0

php修改排序,上移下移

 

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 "exit; //移动后刷新页面

 }

  相关解决方案