DoRehtml.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. define('EmpireCMSAdmin','1');
  3. require("../../class/connect.php");
  4. require("../../class/db_sql.php");
  5. require("../../class/functions.php");
  6. $link=db_connect();
  7. $empire=new mysqlquery();
  8. $editor=1;
  9. //验证用户
  10. $lur=is_login();
  11. $logininid=$lur['userid'];
  12. $loginin=$lur['username'];
  13. $loginrnd=$lur['rnd'];
  14. $loginlevel=$lur['groupid'];
  15. $loginadminstyleid=$lur['adminstyleid'];
  16. //ehash
  17. $ecms_hashur=hReturnEcmsHashStrAll();
  18. $add=$_GET;
  19. $havehtml=(int)$add['havehtml'];
  20. $add[classid]=RepPostVar($add[classid]);
  21. $add[from]=RepPostStrUrl($add[from]);
  22. $add[retype]=RepPostStr($add[retype],1);
  23. $add[startday]=RepPostStr($add[startday],1);
  24. $add[endday]=RepPostStr($add[endday],1);
  25. $add[startid]=RepPostVar($add[startid]);
  26. $add[endid]=RepPostVar($add[endid]);
  27. $moreportpid=(int)$_GET['moreportpid'];
  28. $mphref='';
  29. if($moreportpid)
  30. {
  31. $mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
  32. }
  33. $tbname=$add['tbname'];
  34. $count=count($tbname);
  35. //刷新所有表
  36. if(!$count)
  37. {
  38. $j=0;
  39. $tsql=$empire->query("select tbname from {$dbtbpre}enewstable where intb=0 order by tid");
  40. while($tr=$empire->fetch($tsql))
  41. {
  42. $tbname[$j]=$tr[tbname];
  43. $j++;
  44. }
  45. $count=count($tbname);
  46. }
  47. esetcookie("retablenum",$count,0,1);
  48. esetcookie("rechecktablenum",0,0,1);
  49. $url="../ecmschtml.php?enews=ReNewsHtml&classid=$add[classid]&from=".urlencode($add[from])."&retype=$add[retype]&startday=$add[startday]&endday=$add[endday]&startid=$add[startid]&endid=$add[endid]&havehtml=$havehtml&reallinfotime=".time().$ecms_hashur['href'].$mphref;
  50. echo"<link href='../adminstyle/".$loginadminstyleid."/adminstyle.css' rel='stylesheet' type='text/css'><center>要刷新的表的总个数为:<font color=red>$count</font>个</center><br>";
  51. for($i=0;$i<$count;$i++)
  52. {
  53. $tbname[$i]=RepPostVar($tbname[$i]);
  54. $trueurl=$url."&tbname=".$tbname[$i];
  55. echo"<table width='100%' border=0 align=center cellpadding=3 cellspacing=1 class=tableborder><tr class=header><td>刷新数据表:".$tbname[$i]."</td></tr><tr><td bgcolor='#ffffff'><iframe frameborder=0 height=35 id='".$tbname[$i]."' scrolling=no
  56. src=\"".$trueurl."\"
  57. width=\"100%\"></iframe></td></tr></table>";
  58. }
  59. db_close();
  60. $empire=null;
  61. ?>
  62. <iframe frameborder=0 height=35 id="checkrehtml" scrolling=no
  63. src="CheckRehtml.php?first=1&from=<?=urlencode($add[from])?><?=$ecms_hashur['href']?><?=$mphref?>"
  64. width="100%"></iframe>