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

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

开发平台:

PHP

  1. <?
  2. /*
  3.     [BBWPS!] (C)2006-2010 小蜜蜂版权所有.
  4. This is NOT a freeware, use is subject to license terms
  5.     时间:2007年12月
  6. */
  7. $un = $_COOKIE["bbwps_user"];
  8. require_once("./config.php");
  9. require_once("./class/mysql_class.php");
  10. require_once("./class/template_class.php");
  11. require_once("./function/checkModuleSession.php");
  12. require_once("./config/module.php");
  13. require_once("./function/function.php");
  14. $db= new DB($hostname,$username,$password,$database);
  15. $mid = $_GET['mid'];
  16. $cid = $_GET['cid'];
  17. $sid = $_GET["sid"];
  18. $cont = $_POST['content'];
  19. $code = MD5($_POST["code"]);
  20. $a = getBBWPSSession("./session/");
  21. if($a["code"]==$code){
  22.   $content = nl2br($cont);
  23.   $enter="nr";
  24.   $content = str_replace($enter,"",$content);
  25.   $sql ="insert into ".$prefix."revert (content,date,mid,username) values ('$content','".time()."','$mid','$un')";
  26.   $db->query($sql,1);
  27.   Meta(0,"?f-showmessage--mid-{$mid}--sid-{$sid}--cid-{$cid}.html");
  28. }
  29. else{
  30. MsgError('请核对验证码!');
  31. }
  32. $db->close();
  33. ?>