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

📄 attendee_detail.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</head>\r\n\r\n<body class=\"bodycolor\" topmargin=\"5\">\r\n<table border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"3\" class=\"small\">\r\n  <tr>\r\n    <td class=\"Big\"><img src=\"/images/menu/meeting.gif\"  width=\"17\" height=\"17\"><span class=\"big3\"> 会议回执信息</span><br>\r\n    </td>\r\n  </tr>\r\n</table>\r\n<br>\r\n\r\n";
$MEETING_COUNT = 0;
$query = "SELECT * from MEETING_ATTENDEE_NOT,USER where USER.USER_ID=MEETING_ATTENDEE_NOT.USER_ID and M_ID='".$M_ID."'";
$cursor = exequery( $connection, $query );
while ( $ROW = mysql_fetch_array( $cursor ) )
{
	++$MEETING_COUNT;
	$USER_NAME = $ROW['USER_NAME'];
	$MA_FLAG = $ROW['MA_FLAG'];
	$REASON = $ROW['REASON'];
	if ( $MA_FLAG == 1 )
	{
		$MA_FLAG_DESC = "参加";
	}
	else
	{
		$MA_FLAG_DESC = "不参加";
	}
	if ( $MEETING_COUNT % 2 == 1 )
	{
		$TableLine = "TableLine1";
	}
	else
	{
		$TableLine = "TableLine2";
	}
	if ( $MEETING_COUNT == 1 )
	{
		echo "<table border=\"0\" cellspacing=\"1\" width=\"95%\" class=\"small\" bgcolor=\"#000000\" cellpadding=\"3\">\r\n<tr class=\"TableHeader\">\r\n  <td nowrap align=\"center\">姓名</td>\r\n  <td nowrap align=\"center\">回执信息</td>\r\n</tr>\r\n";
	}
	echo "<tr class=\"";
	echo $TableLine;
	echo "\">\r\n\t<td nowrap align=\"center\">";
	echo $USER_NAME;
	echo "&nbsp;\r\n  <td align=\"center\" title=\"";
	echo $REASON;
	echo "\">";
	echo $MA_FLAG_DESC;
	echo "</td>\r\n</tr>\r\n";
}
if ( $MEETING_COUNT == 0 )
{
	message( "", "无会议回执" );
}
else
{
	echo "</table>";
}
echo "\r\n<br>\r\n<center><input type=\"button\" value=\"关闭\" class=\"BigButton\" onClick=\"window.close();\" title=\"关闭窗口\"></center>\r\n</body>\r\n\r\n</html>\r\n";
?>

⌨️ 快捷键说明

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