📄 listtable.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);
//验证权限
//CheckLevel($logininid,$loginin,$classid,"table");
$url="<a href='ListTable.php'>管理数据表</a>";
$sql=$empire->query("select tid,tname,tbname,isdefault from {$dbtbpre}enewstable order by tid");
//风格
$loginadminstyleid=(int)getcvar('loginadminstyleid');
?>
<!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="../adminstyle/<?=$loginadminstyleid?>/adminstyle.css" rel="stylesheet" type="text/css">
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td width="50%">位置:
<?=$url?>
</td>
<td><div align="right">
<input type="button" name="Submit" value="新建数据表" onclick="self.location.href='AddTable.php?enews=AddTable';">
<input type="button" name="Submit" value="导入系统模型" onclick="self.location.href='LoadInM.php';">
</div></td>
</tr>
</table>
<br>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
<tr class="header">
<td width="7%" height="25"><div align="center">ID</div></td>
<td width="40%" height="25"><div align="center">表名称</div></td>
<td width="53%" height="25"><div align="center">操作</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]?> (<?=$dbtbpre?>ecms_<b><?=$r[tbname]?></b>)
</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=560,scrollbars=yes,top=70,left=100,resizable=yes');"><strong>管理字段</strong></a>]
[<a href="#ecms" onclick="window.open('ListM.php?tid=<?=$r[tid]?>&tbname=<?=$r[tbname]?>','','width=860,height=560,scrollbars=yes,top=70,left=100,resizable=yes');"><strong>管理系统模型</strong></a>]
[<a href="../enews.php?enews=DefaultTable&tid=<?=$r[tid]?>" onclick="return confirm('确认要默认?');"><strong>设为默认表</strong></a>]
[<a href="CopyTable.php?enews=CopyNewTable&tid=<?=$r[tid]?>"><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 + -