sedit.php
上传用户:yttaitong
上传日期:2009-05-10
资源大小:128k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

PHP

  1. <?php
  2. /*
  3.     [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
  4. This is NOT a freeware, use is subject to license terms
  5.     时间:2007年12月
  6.     描述:修改分类名称
  7. */
  8. error_reporting(0);
  9. $newname=$_POST['newname'];
  10. $sid=$_POST['sid'];
  11. require("../../config.php");
  12. require("../../class/mysql_class.php");
  13. require_once("../../function/function.php");
  14. if(!$sid){
  15. MsgError("请先添加分类");
  16. }
  17. $db= new DB($hostname,$username,$password,$database);
  18. //*********修改分类*************
  19. if($_GET['action']==1){
  20. if(!$newname){
  21. MsgError("新名称不能为空");
  22. }
  23. $db->query("update ".$prefix."sort set sname = '".$newname."' where sid= '".$sid."' ",1);
  24. }
  25. //*********删除分类*************
  26. if($_GET['action']==2){
  27. $db->query("delete from ".$prefix."sort where sid ='".$sid."' or sparent='".$sid."'",1);
  28. }
  29. ExeSuccess("提交成功!","ms.php?sid={$sid}");
  30. $db->close();
  31. ?>