📄 show_desc.php
字号:
<?
include_once 'inc/auth.php';
include_once 'inc/utility_all.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/workflow.gif" align="absmiddle">';
echo '<s';
echo 'pan class="big3"> 考核任务描述</span><br>
</td>
</tr>
</table>
<br>
';
$query = (((''.'SELECT FLOW_DESC from SCORE_FLOW where FLOW_ID=\'').$FLOW_ID).'\'');
$cursor = exequery ($connection, $query);
if ($ROW = mysql_fetch_array ($cursor))
{
$FLOW_DESC = $ROW['FLOW_DESC'];
}
if (($FLOW_DESC == ''))
{
echo '
<div align="center" title="提示信息框">
';
echo '<s';
echo 'pan style="BACKGROUND:#EEEEEE;COLOR:#FF6633;margin: 10px;border:1px dotted #FF6633;font-weight:bold;padding:8px;width=300">
<font><b>无考核描述</b></font>
</span>
</div>
';
}
else
{
echo '<div align="center" title="提示信息框">
';
echo '<s';
echo 'pan style="BACKGROUND:#EEEEEE;COLOR:#FF6633;margin: 10px;border:1px dotted #FF6633;font-weight:bold;padding:8px;width=300">
<font><b>';
echo $FLOW_DESC;
echo '</b></font>
</span>
</div>
';
}
echo '<div align="center">
<br>
<input type="button" class="BigButton" value="关闭" onclick="window.close();">
</div>
</body>
</html>';
?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -