📄 dorehtml.php
字号:
<?php
require("../../class/connect.php");
include("../../class/db_sql.php");
include("../../class/config.php");
include("../../class/functions.php");
$link=db_connect();
$empire=new mysqlquery();
$logininid=getcvar('loginuserid');
$loginin=getcvar('loginusername');
$loginrnd=getcvar('loginrnd');
$loginlevel=getcvar('loginlevel');
$editor=1;
is_login($logininid,$loginin,$loginrnd);
$add=$_GET;
$havehtml=(int)$add['havehtml'];
$tbname=$add['tbname'];
$count=count($tbname);
//刷新所有表
if(!$count)
{
$j=0;
$tsql=$empire->query("select tbname from {$dbtbpre}enewstable order by tid");
while($tr=$empire->fetch($tsql))
{
$tbname[$j]=$tr[tbname];
$j++;
}
$count=count($tbname);
}
esetcookie("retablenum",$count);
esetcookie("rechecktablenum",0);
$url="../ecmschtml.php?enews=ReNewsHtml&classid=$add[classid]&from=$add[from]&retype=$add[retype]&startday=$add[startday]&endday=$add[endday]&startid=$add[startid]&endid=$add[endid]&havehtml=$havehtml";
//风格
$loginadminstyleid=(int)getcvar('loginadminstyleid');
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++)
{
$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=<?=$add[from]?>"
width="100%"></iframe>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -