博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php修改排序,上移下移
阅读量:6420 次
发布时间:2019-06-23

本文共 865 字,大约阅读时间需要 2 分钟。

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

  

编辑器加载中...

转载地址:http://qilra.baihongyu.com/

你可能感兴趣的文章
Linux Centos 查询信息
查看>>
android adb命令
查看>>
python “双”稀疏矩阵转换为最小联通量“单”矩阵
查看>>
揭秘天猫双11背后:20万商家600万张海报,背后只有一个鹿班
查看>>
重置mysq root密码脚本
查看>>
我的友情链接
查看>>
MHA配置参数
查看>>
深入理解Lock
查看>>
vim的块选择
查看>>
HTML --块
查看>>
在DLL中获取主进程窗口句柄
查看>>
基于消息队列的双向通信
查看>>
一个不错的loading效果
查看>>
Debian允许root用户登录
查看>>
linux的文件系统
查看>>
上云利器,K8S应用编排设计器之快到极致
查看>>
袋鼠云服务案例系列 | 从DB2到MySQL,某传统金融平台的互联网转型之路
查看>>
RealServer配置脚本
查看>>
九月份技术指标 华为交换机的简单配置
查看>>
python 写json格式字符串到文件
查看>>