CheckRehtml.php 919 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. exit();
  3. define('EmpireCMSAdmin','1');
  4. require("../../class/connect.php");
  5. require("../../class/db_sql.php");
  6. require("../../class/functions.php");
  7. $link=db_connect();
  8. $empire=new mysqlquery();
  9. $editor=1;
  10. //验证用户
  11. $lur=is_login();
  12. $logininid=$lur['userid'];
  13. $loginin=$lur['username'];
  14. $loginrnd=$lur['rnd'];
  15. $loginlevel=$lur['groupid'];
  16. $loginadminstyleid=$lur['adminstyleid'];
  17. //ehash
  18. $ecms_hashur=hReturnEcmsHashStrAll();
  19. hCheckEcmsRHash();
  20. //初使化
  21. $from=RepPostStrUrl($_GET['from']);
  22. if($_GET['first']==1)
  23. {
  24. $rechecktablenum=0;
  25. }
  26. else
  27. {
  28. $rechecktablenum=$_COOKIE['rechecktablenum'];
  29. $rechecktablenum+=1;
  30. }
  31. if($rechecktablenum>=$_COOKIE['retablenum'])
  32. {
  33. $enews="ReNewsHtml";
  34. //操作日志
  35. insert_dolog("");
  36. echo"<script>alert('刷新信息页面成功!');parent.location.href='$from';</script>";
  37. }
  38. else
  39. {
  40. //setcookie("rechecktablenum",$rechecktablenum,0,"/","");
  41. }
  42. db_close();
  43. $empire=null;
  44. ?>