📄 listtable.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=$_COOKIE['enewsloginuserid'];
$loginin=$_COOKIE['enewsloginusername'];
$loginrnd=$_COOKIE['enewsloginrnd'];
$loginlevel=$_COOKIE['enewsloginlevel'];
$editor=1;
is_login($logininid,$loginin,$loginrnd);
//验证权限
//CheckLevel($logininid,$loginin,$classid,"table");
$url="系统设置 -> <a href=ListTable.php>管理数据表</a>";
$sql=$empire->query("select tid,tname,tbname,isdefault from phome_enewstable");
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>管理数据表</title>
<link href="../../data/images/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td>位置:<?=$url?></td>
</tr>
</table>
<br>
<table width="98%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="8%" height="25"><div align="center"><font color="#FFFFFF">ID</font></div></td>
<td width="42%" height="25"><div align="center"><font color="#FFFFFF">表名称</font></div></td>
<td width="50%" height="25"><div align="center"><font color="#FFFFFF">操作</font></div></td>
</tr>
<?
while($r=$empire->fetch($sql))
{
//默认表
if($r[isdefault])
{$bgcolor="#DBEAF5";}
else
{$bgcolor="#ffffff";}
?>
<tr bgcolor="<?=$bgcolor?>">
<td height="25"><div align="center">
<?=$r[tid]?>
</div></td>
<td height="25"><div align="center">
<?=$r[tname]?> (phome_ecms_<?=$r[tbname]?>)
</div></td>
<td height="25"><div align="center">[<a href="#ecms" onclick="window.open('ListF.php?tid=<?=$r[tid]?>&tbname=<?=$r[tbname]?>','','width=700,height=660,scrollbars=yes');"><strong>管理字段</strong></a>]
[<a href="#ecms" onclick="window.open('ListM.php?tid=<?=$r[tid]?>&tbname=<?=$r[tbname]?>','','width=700,height=660,scrollbars=yes');"><strong>管理系统模型</strong></a>]
[<a href="../enews.php?enews=DefaultTable&tid=<?=$r[tid]?>" onclick="return confirm('确认要默认?');"><strong>设为默认表</strong></a>]
[<a href="AddTable.php?enews=EditTable&tid=<?=$r[tid]?>"><strong>修改</strong></a>]
[<a href="../enews.php?enews=DelTable&tid=<?=$r[tid]?>" onclick="return confirm('确认要删除?');"><strong>删除</strong></a>]
</div></td>
</tr>
<?
}
?>
</table>
</body>
</html>
<?
db_close();
$empire=null;
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -