repeat.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. require("../config.php");
  10. require("../class/mysql_class.php");
  11. $db = new DB($hostname,$username,$password,$database);
  12. $mid = $_GET['mid'];
  13. $i = $_GET['i'];
  14. $etime = time()+$i*3600*24;
  15. $sql = "update ".$prefix."message set btime='".time()."',etime='".$etime."' where mid='".$mid."'";
  16. $db->query($sql,1);
  17. echo "<meta http-equiv="refresh" content="0 url=manage.php">";
  18. $db->close();
  19. ?>