📄 show_summary.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/address.gif" align="absmiddle" width="22" height="18">';
echo '<s';
echo 'pan 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'];
}
echo '
<table border="0" width="80%" cellpadding="3" cellspacing="1" bgcolor="#000000" class="small" align="center">
<tr>
<td class="TableHeader" align="center">';
echo $M_NAME;
echo ' - 会议纪要</td>
</td>
</tr>
<tr>
<td class="TableData" colspan="2" height="400" valign="top">';
echo $SUMMARY;
echo ' </td>
</tr>
<tr>
<td class="TableHeader" align="center">
<input type="button" value="打印" class="BigButton" onclick="document.execCommand(\'Print\');" title="直接打印表格页面">
<input type="button" class="BigButton" value="关闭" onclick="window.close()"></td>
</td>
</tr>
</table>
</body>
</html>';
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -