You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
2.3 KiB
65 lines
2.3 KiB
<?php
|
|
define('EmpireCMSAdmin','1');
|
|
require("../../class/connect.php");
|
|
require("../../class/db_sql.php");
|
|
require("../../class/functions.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
$editor=1;
|
|
//验证用户
|
|
$lur=is_login();
|
|
$logininid=$lur['userid'];
|
|
$loginin=$lur['username'];
|
|
$loginrnd=$lur['rnd'];
|
|
$loginlevel=$lur['groupid'];
|
|
$loginadminstyleid=$lur['adminstyleid'];
|
|
//ehash
|
|
$ecms_hashur=hReturnEcmsHashStrAll();
|
|
|
|
$add=$_GET;
|
|
$havehtml=(int)$add['havehtml'];
|
|
$add[classid]=RepPostVar($add[classid]);
|
|
$add[from]=RepPostStrUrl($add[from]);
|
|
$add[retype]=RepPostStr($add[retype],1);
|
|
$add[startday]=RepPostStr($add[startday],1);
|
|
$add[endday]=RepPostStr($add[endday],1);
|
|
$add[startid]=RepPostVar($add[startid]);
|
|
$add[endid]=RepPostVar($add[endid]);
|
|
$moreportpid=(int)$_GET['moreportpid'];
|
|
$mphref='';
|
|
if($moreportpid)
|
|
{
|
|
$mphref=Moreport_ReturnUrlCsPid($moreportpid,0,0,'');
|
|
}
|
|
$tbname=$add['tbname'];
|
|
$count=count($tbname);
|
|
//刷新所有表
|
|
if(!$count)
|
|
{
|
|
$j=0;
|
|
$tsql=$empire->query("select tbname from {$dbtbpre}enewstable where intb=0 order by tid");
|
|
while($tr=$empire->fetch($tsql))
|
|
{
|
|
$tbname[$j]=$tr[tbname];
|
|
$j++;
|
|
}
|
|
$count=count($tbname);
|
|
}
|
|
esetcookie("retablenum",$count,0,1);
|
|
esetcookie("rechecktablenum",0,0,1);
|
|
$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;
|
|
echo"<link href='../adminstyle/".$loginadminstyleid."/adminstyle.css' rel='stylesheet' type='text/css'><center>要刷新的表的总个数为:<font color=red>$count</font>个</center><br>";
|
|
for($i=0;$i<$count;$i++)
|
|
{
|
|
$tbname[$i]=RepPostVar($tbname[$i]);
|
|
$trueurl=$url."&tbname=".$tbname[$i];
|
|
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
|
|
src=\"".$trueurl."\"
|
|
width=\"100%\"></iframe></td></tr></table>";
|
|
}
|
|
db_close();
|
|
$empire=null;
|
|
?>
|
|
<iframe frameborder=0 height=35 id="checkrehtml" scrolling=no
|
|
src="CheckRehtml.php?first=1&from=<?=urlencode($add[from])?><?=$ecms_hashur['href']?><?=$mphref?>"
|
|
width="100%"></iframe>
|