📄 conflict_detail.php
字号:
<?
include_once 'inc/auth.php';
echo '
<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/menu/meeting.gif" width="17" height="17">';
echo '<s';
echo 'pan class="big3"> 与下列会议冲突</span><br>
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="1" width="95%" class="small" bgcolor="#000000" cellpadding="3">
<tr class="TableHeader">
<td nowrap align="center">会议名称</td>
<td nowrap align="center">开始时间</td>
<td nowrap align="center">结束时间</td>
</tr>
';
$PIECES = explode (',', $M_ID);
$PIECES_COUNT = sizeof ($PIECES);
if (($PIECES[($PIECES_COUNT - 1)] == ''))
{
--$PIECES_COUNT;
}
for ($I = 0; ($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 '
<tr class="';
echo $TableLine;
echo '">
<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>
<td align="center">';
echo $M_START;
echo '</td>
<td align="center">';
echo $M_END;
echo '</td>
</tr>
';
continue;
}
}
echo '</table><br>
<center><input type="button" value="关闭" class="BigButton" onClick="window.close();" title="关闭窗口"></center>
</body>
</html>
';
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -