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

📄 job_kf_show.php

📁 开源的OA系统
💻 PHP
字号:
<?php
session_start();
?>
<html>
<head>
<title>查看信件</title>

<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 leftmargin="0" topmargin="0">
<?
include "../datasource.inc.php";
if ($_SESSION['userjs'] == '0') {
    $sql     = "select * from job_kf where id='$id';";
} else {
    $sql     = "select * from job_kf where id='$id' and ( userid='$_SESSION[userid]' or department='$_SESSION[department]');";

}
$result  = mysql_query($sql);
$row     = mysql_fetch_array($result);
$job_body         = str_replace("<BR>", "\n", $row['job_body']);
		 
?>

<center>
<table border=0 cellpadding=0 cellspacing=1 bgcolor=#3494d4 width=400>
  <tr height=25>
    <td colspan="2" bgcolor=#0F5099><font color=ffffff><center> 查看客户信息</center></font></td>
  </TR>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>填表时间</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[date]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>填表人</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[userid]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>公司名称</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_name]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>重点跟踪</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_y]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>联系人</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_company]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>联系电话</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_phone]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>联系地址</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_address]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>联系EMAIL</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_email]"; ?>
    </td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>网络通讯</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_qq]"; ?>
    </td>
  </tr>  
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>公司网址</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_http]"; ?>
    </td>
  </tr> 
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>业务类型</td>
    <td width="70%"  bgcolor=ffffff> 
    &nbsp;<?php echo "$row[job_fl]"; ?>
	</td>
  </tr>
  <tr height=24>
    <td width="30%"  align=center bgColor=#ffffff>备注(内容)</td>
    <td width="70%"  bgColor=#ffffff>&nbsp;<?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>

⌨️ 快捷键说明

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