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

📄 text3.php

📁 开源的OA系统
💻 PHP
字号:
<?php
session_start();
//if ( !empty($_SESSION["userid"]) and $_SESSION["userjs"] == "1") { 
include "../datasource.inc.php";
$sql              = "select * from job_user where id='$_REQUEST[id]';";
$result           = mysql_query($sql);
$row              = mysql_fetch_array($result);
$body             = str_replace("<BR>", "\n", $row['body']);
?>
<html>
<head>
<title>用户详细信息</title>
<META http-equiv=Content-Type content="text/html; charset=gb2312">
<link href="css/a1.css" rel="stylesheet" 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 bgcolor="ffffff" topMargin=0 MARGINHEIGHT="0" MARGINWIDTH="0">
<?php// echo "<div class=f14><b>用户 <font color=red>$row[userid]</font> 的详细信息:<hr></div>";?>
<table width="400"  border=0 cellpadding=0 cellspacing=1 bgcolor=#3494d4>
  <tr height="40"><td bgcolor=#0F5099 colspan="2"><font color=ffffff><center><? echo $row[username];?>的详细信息</center></font></td></tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>姓名:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[username]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>性别:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[sex]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>年龄:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[age]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>地址:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[address]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>邮编区号:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[code]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>电话:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[phone1]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>手机:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[phone2]";?></td>
  </tr>
  <tr height="24">
    <td width="30%" bgColor=#ffffff align=center>电邮:</td><td width="70%" bgColor=#ffffff>&nbsp;<? echo "$row[email]";?></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>
</body>
</html>

⌨️ 快捷键说明

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