⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 job_inform_show.php

📁 开源的OA系统
💻 PHP
字号:
<?php
session_start();
include "../datasource.inc.php";
if ($_REQUEST['sessid']) {
    $id = $_REQUEST['sessid'];
	echo $_SESSION['shpid'];
}
	$sql1   = "select * from job_inform where id='$id'";
	$result1  = mysql_query($sql1);
	$row1              = mysql_fetch_array($result1);
	$job_body         = str_replace("<BR>", "\n", $row1['job_body']);
?>
<center>
<div><b><font color="red" size="5">通  知</font></div>
<table border=0 cellpadding=0 cellspacing=1 bgcolor=#333333 width=400 height=300>
  <tr> 
    <td bgcolor=ffffff width=400 height=300 valign=top><pre><font size="4"><?php echo "$job_body"; ?></font></pre></td>
  </tr>
</table>
</center><br>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -