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

📄 conflict_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<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  <td nowrap align=\"center\">结束时间</td>\r\n</tr>\r\n\r\n";
$PIECES = explode( ",", $M_ID );
$PIECES_COUNT = sizeof( $PIECES );
if ( $PIECES[$PIECES_COUNT - 1] == "" )
{
	--$PIECES_COUNT;
}
$I = 0;
for ( ;	$I < $PIECES_COUNT;	++$I	)
{
	++$MEETING_COUNT;
	$query = "SELECT * from MEETING where M_ID='".$PIECES[$I]."'";
	$cursor = exequery( $connection, $query );
	if ( $ROW = mysql_fetch_array( $cursor ) )
	{
		$M_ID = $ROW['M_ID'];
		$M_NAME = $ROW['M_NAME'];
		$M_START = $ROW['M_START'];
		$M_END = $ROW['M_END'];
		if ( $MEETING_COUNT % 2 == 1 )
		{
			$TableLine = "TableLine1";
		}
		else
		{
			$TableLine = "TableLine2";
		}
		echo "\r\n<tr class=\"";
		echo $TableLine;
		echo "\">\r\n\t<td nowrap align=\"center\"><a href=\"javascript:;\" onClick=\"window.open('../query/meeting_detail.php?M_ID=";
		echo $M_ID;
		echo "','','height=400,width=450,status=1,toolbar=no,menubar=no,location=no,scrollbars=yes,left=300,top=150,resizable=yes');\">";
		echo $M_NAME;
		echo "</a>&nbsp;\r\n  <td align=\"center\">";
		echo $M_START;
		echo "</td>\r\n  <td align=\"center\">";
		echo $M_END;
		echo "</td>\r\n</tr>\r\n";
	}
}
echo "</table><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 + -