⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.php

📁 极限网络智能办公系统 - Office Automation 2008 官方100% 源码
💻 PHP
字号:
<?php
 

include_once( "inc/auth.php" );
echo "\r\n<html>\r\n<head>\r\n<title>分组管理</title>\r\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=gb2312\">\r\n<script>\r\nfunction delete_group(GROUP_ID)\r\n{\r\n  msg='确认要删除该分组么?\\n注意:该分组下的联系人将全部转入到默认分组中!';\r\n  if(window.confirm(msg))\r\n  {\r\n     URL=\"delete.php?GROUP_ID=\" + GROUP_ID;\r\n     window.location=URL;\r\n  }\r\n}\r\n\r\nfunction clear_group(GROUP_ID,GROUP_NAME)\r\n{ \r\n  msg='确认要清空['+GROUP_NAME+']分组的联系人么?';  \t \r\n  if(window.confirm(msg))\r\n  {\r\n     URL=\"clear.php?GROUP_ID=\" + GROUP_ID;\r\n     window.location=URL;\r\n  }\r\n}\r\n</script>\r\n</head>\r\n<body class=\"bodycolor\" topmargin=\"5\">\r\n\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" class=\"small\">\r\n  <tr>\r\n    <td class=\"Big\"><img src=\"/images/notify_new.gif\" align=\"absmiddle\"><span class=\"big3\"> 新建分组</span><br>\r\n    </td>\r\n  </tr>\r\n</table>\r\n\r\n<div align=\"center\">\r\n<input type=\"button\" value=\"新建分组\" class=\"BigButton\" onClick=\"location='new.php';\" title=\"创建新的分组,录入相关信息\">\r\n</div>\r\n\r\n<br>\r\n\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" class=\"small\">\r\n  <tr>\r\n    <td class=\"Big\"><img src=\"/images/notify_open.gif\" align=\"absmiddle\"><span class=\"big3\"> 管理分组</span>\r\n    </td>\r\n  </tr>\r\n</table>\r\n\r\n<br>\r\n\r\n<table border=\"0\" cellspacing=\"1\" width=\"95%\" class=\"small\" bgcolor=\"#000000\" cellpadding=\"3\">\r\n  <tr class=\"TableData\">\r\n  <td nowrap align=\"center\">默认</td>\r\n  <td nowrap align=\"center\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n      <a href=\"javascript:clear_group('0','默认');\"> 清空</a>\r\n      <a href=\"import.php?GROUP_ID=0\"> 导入</a>\r\n      <a href=\"export.php?GROUP_ID=0&TYPE=0\" target=\"_blank\"> 导出Foxmail格式</a>\r\n      <a href=\"export.php?GROUP_ID=0&TYPE=1\" target=\"_blank\"> 导出OutLook格式</a>\r\n      <a href=\"print.php?GROUP_ID=0\" target=\"_blank\"> 打印</a>\r\n  </td>\r\n</tr>\r\n";
$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'];
	echo "    <tr class=\"TableData\">\r\n      <td nowrap align=\"center\">";
	echo $GROUP_NAME;
	echo "</td>\r\n      <td nowrap align=\"center\">\r\n          <a href=\"edit.php?GROUP_ID=";
	echo $GROUP_ID;
	echo "\"> 编辑</a>\r\n          <a href=\"javascript:delete_group(";
	echo $GROUP_ID;
	echo ");\"> 删除</a>\r\n          <a href=\"javascript:clear_group('";
	echo $GROUP_ID;
	echo "','";
	echo $GROUP_NAME;
	echo "');\"> 清空</a>\r\n          <a href=\"import.php?GROUP_ID=";
	echo $GROUP_ID;
	echo "\"> 导入</a>\r\n          <a href=\"export.php?GROUP_ID=";
	echo $GROUP_ID;
	echo "&TYPE=0\" target=\"_blank\"> 导出Foxmail格式</a>\r\n          <a href=\"export.php?GROUP_ID=";
	echo $GROUP_ID;
	echo "&TYPE=1\" target=\"_blank\"> 导出OutLook格式</a>\r\n          <a href=\"print.php?GROUP_ID=";
	echo $GROUP_ID;
	echo "\" target=\"_blank\"> 打印</a>\r\n      </td>\r\n    </tr>\r\n";
}
echo "   <thead class=\"TableHeader\">\r\n      <td nowrap align=\"center\">分组名称</td>\r\n      <td nowrap align=\"center\" width=\"300\">操作</td>\r\n   </thead>\r\n   </table>\r\n\r\n</body>\r\n</html>\r\n";
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -