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

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. require("../../config.php");
  10. require("../../class/mysql_class.php");
  11. require_once("../../function/function.php");
  12. $db= new DB($hostname,$username,$password,$database);
  13. $search = $_GET['search'];
  14. $sort = $_GET['sort'];
  15. $mid = $_POST['mid'];
  16. $cid = $_GET["cid"];
  17. if(!$mid){
  18. MsgError("至少选中一条");
  19. }
  20. if($_GET['action']==4){
  21. $id = $_POST['id'];
  22. for($i=0;$i<count($id);$i++){
  23. $sql = "delete from ".$prefix."revert where id='".$id[$i]."'";
  24. $db->query($sql,1);
  25. }
  26. ExeSuccess("删除成功!","revert.php?mid={$mid}");
  27. }
  28. for($i=0;$i<count($mid);$i++){
  29.   $sql="delete from ".$prefix."message where mid='".$mid[$i]."'";
  30.   $ret="delete from ".$prefix."revert where mid='".$mid[$i]."'";
  31.   $result=$db->query("select picture from ".$prefix."message where mid='".$mid[$i]."'",1);
  32.   $row=$db->fetch_array($result);
  33.   $picture=$row["picture"];
  34.   if($picture){
  35.    $handle = explode(".",$picture);
  36.     $file = date("Y-m-j",$handle[0]);
  37.     $path = '../../upload/'.$file.'/'.$picture;
  38.     unlink($path);  
  39.   }
  40.  $db->query($sql,1);
  41.  $db->query($ret,1);
  42. }
  43. if($_GET['action']==1){
  44. ExeSuccess("删除成功!","mm.php");
  45. }
  46. if($search||$sort){
  47. ExeSuccess("删除成功!","search.php?search={$search}&sort={$sort}");
  48. }
  49. if($cid){
  50. ExeSuccess("删除成功!","search.php?cid={$cid}");
  51. }
  52. if($_GET['action']==3){
  53. ExeSuccess("删除成功!","outdatemessage.php");
  54. }
  55. $db->close();
  56. ?>