sedit.php
资源名称:BBWPS.rar [点击查看]
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
PHP
- <?php
- /*
- [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
- This is NOT a freeware, use is subject to license terms
- 时间:2007年12月
- 描述:修改分类名称
- */
- error_reporting(0);
- $newname=$_POST['newname'];
- $sid=$_POST['sid'];
- require("../../config.php");
- require("../../class/mysql_class.php");
- require_once("../../function/function.php");
- if(!$sid){
- MsgError("请先添加分类");
- }
- $db= new DB($hostname,$username,$password,$database);
- //*********修改分类*************
- if($_GET['action']==1){
- if(!$newname){
- MsgError("新名称不能为空");
- }
- $db->query("update ".$prefix."sort set sname = '".$newname."' where sid= '".$sid."' ",1);
- }
- //*********删除分类*************
- if($_GET['action']==2){
- $db->query("delete from ".$prefix."sort where sid ='".$sid."' or sparent='".$sid."'",1);
- }
- ExeSuccess("提交成功!","ms.php?sid={$sid}");
- $db->close();
- ?>