show_summary.php
来自「极限网络智能办公系统 Office Automation V3.0官方100%源」· PHP 代码 · 共 44 行
PHP
44 行
<?
include_once("inc/auth.php");
include_once("inc/utility.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/address.gif" align="absmiddle" width="22" height="18"><span class="big3"> 会议纪要</span>
</td>
</tr>
</table>
<?
$query = "SELECT * from MEETING where M_ID=$M_ID";
$cursor= exequery($connection,$query);
if($ROW=mysql_fetch_array($cursor))
{
$SUMMARY=$ROW["SUMMARY"];
$M_NAME=$ROW["M_NAME"];
}
?>
<table border="0" width="80%" cellpadding="3" cellspacing="1" bgcolor="#000000" class="small" align="center">
<tr>
<td class="TableHeader" align="center"><?=$M_NAME?> - 会议纪要</td>
</td>
</tr>
<tr>
<td class="TableData" colspan="2" height="400" valign="top"><?=$SUMMARY?>
</td>
</tr>
<tr>
<td class="TableHeader" align="center"><input type="button" class="BigButton" value="关闭" onclick="window.close()"></td>
</td>
</tr>
</table>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?