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("../function/function.php");
  12. $db= new DB($hostname,$username,$password,$database);
  13. $mid=$_POST['mid'];
  14. if(!$mid){
  15. MsgError("至少选中一条");
  16. }
  17. //*********删除评论**********
  18. if($_GET['action']==3){
  19. $id = $_POST['id'];
  20. if(!$id){
  21. MsgError("至少选中一条");
  22. }
  23. for($i=0;$i<count($id);$i++){
  24. $sql = "delete from ".$prefix."revert where id='".$id[$i]."'";
  25. $db->query($sql,1);
  26. }
  27. echo "<script language='javascript'>";
  28. echo "window.alert('删除成功!');";
  29. echo "</script>";
  30. echo "<meta http-equiv="refresh" content="0 url=revert.php?mid=".$mid."">";
  31. exit();
  32. }
  33. //*********删除信息及过期信息********
  34. for($i=0;$i<count($mid);$i++){
  35. $ret="delete from ".$prefix."revert where mid='".$mid[$i]."'";
  36. $sql="delete from ".$prefix."message where mid='".$mid[$i]."'";
  37. $pic = "select picture from ".$prefix."message where mid='".$mid[$i]."'";
  38. $result = $db->query($pic,1);
  39. $row = $db->fetch_array($result);
  40. if($row["picture"]){
  41. $handle = explode(".",$row["picture"]);
  42. $file = date("Y-m-j",$handle[0]);
  43. $path = '../upload/'.$file.'/'.$row["picture"];
  44. unlink($path);
  45. }
  46. $db->query($sql,1);
  47. $db->query($ret,1);
  48. }
  49. echo "<script language='javascript'>";
  50. echo "window.alert('提交成功!');";
  51. echo "</script>";
  52. if($_GET["action"]==1){
  53. echo "<meta http-equiv="refresh" content="0;url=manage.php">";
  54. }
  55. if($_GET['action']==2){
  56. echo "<meta http-equiv="refresh" content="0;url=outdatemessage.php">";
  57. }
  58. $db->close();
  59. ?>