📄 index.php
字号:
<?
include_once("inc/auth.php");
?>
<html>
<head>
<title>管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body class="bodycolor" topmargin="5">
<table border="0" width="100%" cellspacing="0" cellpadding="3" class="small">
<tr>
<td class="Big"><img src="/images/notify_open.gif" align="absmiddle"><span class="big3"> 分组</span>
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="1" width="95%" class="small" bgcolor="#000000" cellpadding="3">
<tr class="TableData">
<td nowrap align="center">默认</td>
<td nowrap align="center">
<a href="export.php?GROUP_ID=0&TYPE=0" target="_blank"> 导出Foxmail格式</a>
<a href="export.php?GROUP_ID=0&TYPE=1" target="_blank"> 导出OutLook格式</a>
<a href="print.php?GROUP_ID=0" target="_blank"> 打印</a>
</td>
</tr>
<?
//============================ 管理分组 =======================================
$query = "SELECT * from ADDRESS_GROUP where USER_ID='' order by GROUP_NAME asc";
$cursor= exequery($connection,$query);
while($ROW=mysql_fetch_array($cursor))
{
$PRIV_DEPT=$ROW["PRIV_DEPT"];
$PRIV_ROLE=$ROW["PRIV_ROLE"];
$PRIV_USER=$ROW["PRIV_USER"];
if($PRIV_DEPT!="ALL_DEPT")
if(!find_id($PRIV_DEPT,$LOGIN_DEPT_ID) and !find_id($PRIV_ROLE,$LOGIN_USER_PRIV) and !find_id($PRIV_USER,$LOGIN_USER_ID))
continue;
$GROUP_ID=$ROW["GROUP_ID"];
$GROUP_NAME=$ROW["GROUP_NAME"];
?>
<tr class="TableData">
<td nowrap align="center"><?=$GROUP_NAME?></td>
<td nowrap align="center">
<a href="export.php?GROUP_ID=<?=$GROUP_ID?>&TYPE=0" target="_blank"> 导出Foxmail格式</a>
<a href="export.php?GROUP_ID=<?=$GROUP_ID?>&TYPE=1" target="_blank"> 导出OutLook格式</a>
<a href="print.php?GROUP_ID=<?=$GROUP_ID?>" target="_blank"> 打印</a>
</td>
</tr>
<?
}
?>
<thead class="TableHeader">
<td nowrap align="center">分组名称</td>
<td nowrap align="center" width="300">操作</td>
</thead>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -