center_show.php

来自「开源的OA系统」· PHP 代码 · 共 50 行

PHP
50
字号
<?php
session_start();
?>
<html>
<head>
<title>查看记录</title>
<link rel="stylesheet" href="../css/a1.css" type="text/css">
<style type="text/css">
.title14 {font-size:14px;line-height:120%}
td,li,select,input,textarea {font-size:12px}
.f7 {font-size:7px;}
.f24{font-size:24px;}
.f12{font-size:12px;}
.f14{font-size:14px;}
.l17 {line-height:180%;}
</style>
</head>
<body topmargin=0 leftmargin=0>
<?
include "../datasource.inc.php";
$sql    = "select * from job_inform where id='$_REQUEST[id]'";
$result = mysql_query($sql);
$row    = mysql_fetch_array($result);
$job_body         = str_replace("\n", "<BR>", $row['job_body']);
?>
<center>
<table border=0 cellpadding=2 cellspacing=1 bgcolor=#3494d4 width=400>
  <tr height=25><td bgcolor=#0F5099 ><font color=ffffff><center>通  知</center></font></td></tr>
  <tr height=300 valign=top bgcolor="ffffff"><td class=l17 ><?php echo "$job_body"; ?></td>
  </tr>
</table><br>

<table width="400" border="0" align="center" cellpadding="0" cellspacing="0" class="未命名1">
  <tr>
    <td align="center" style="background:#FFFFFF;"><a href="javascript:window.close();">
     <img src="../images/close.gif" width="94" height="20" border="0"></a></td>
  </tr>
  <tr>
    <td align="center" style="background:#FFFFFF;">&nbsp;</td>
  </tr>
</table>
<table width="400" border="0" align="center" cellpadding="0" cellspacing="0" class="未命名1">
 <tr>
   <td width="400" height="20" style="background:#1677E4;color:#FFFFFF;" align="center">
&copy; 2006 上海明宏生物工程有限公司</td>
</tr>
</table>
</center>
</body>
</html>

⌨️ 快捷键说明

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