📄 index.php
字号:
<?
include_once("inc/auth.php");
?>
<html>
<head>
<title>分组管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<script>
function delete_group(GROUP_ID)
{
msg='确认要删除该分组么?\n注意:该分组下的联系人将全部转入到默认分组中!';
if(window.confirm(msg))
{
URL="delete.php?GROUP_ID=" + GROUP_ID;
window.location=URL;
}
}
function clear_group(GROUP_ID,GROUP_NAME)
{
msg='确认要清空['+GROUP_NAME+']分组的联系人么?';
if(window.confirm(msg))
{
URL="clear.php?GROUP_ID=" + GROUP_ID;
window.location=URL;
}
}
</script>
</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_new.gif" align="absmiddle"><span class="big3"> 新建分组</span><br>
</td>
</tr>
</table>
<div align="center">
<input type="button" value="新建分组" class="BigButton" onClick="location='new.php';" title="创建新的分组,录入相关信息">
</div>
<br>
<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="javascript:clear_group('0','默认');"> 清空</a>
<a href="import.php?GROUP_ID=0"> 导入</a>
<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='$LOGIN_USER_ID' order by GROUP_NAME asc";
$cursor= exequery($connection,$query);
$ADD_COUNT=0;
while($ROW=mysql_fetch_array($cursor))
{
$GROUP_COUNT++;
$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="edit.php?GROUP_ID=<?=$GROUP_ID?>"> 编辑</a>
<a href="javascript:delete_group(<?=$GROUP_ID?>);"> 删除</a>
<a href="javascript:clear_group('<?=$GROUP_ID?>','<?=$GROUP_NAME?>');"> 清空</a>
<a href="import.php?GROUP_ID=<?=$GROUP_ID?>"> 导入</a>
<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 + -