📄 conflict_detail.php
字号:
<?
include_once("inc/auth.php");
?>
<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"><span 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";
?>
<tr class="<?=$TableLine?>">
<td nowrap align="center"><a href="javascript:;" onClick="window.open('../apply/meeting_detail.php?M_ID=<?=$M_ID?>','','height=400,width=450,status=1,toolbar=no,menubar=no,location=no,scrollbars=yes,left=300,top=150,resizable=yes');"><?=$M_NAME?></a>
<td align="center"><?=$M_START?></td>
<td align="center"><?=$M_END?></td>
</tr>
<?
}
}//for
?>
</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 + -