?? text.php
字號:
<?php
session_start();
//if ( !empty($_SESSION["userid"]) and $_SESSION["userjs"] == "1") {
include "../datasource.inc.php";
$sql = "select * from job_message 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">
<table width="400" border=0 cellpadding=0 cellspacing=1 bgcolor=#3494d4>
<tr height="25">
<td bgcolor=#0F5099 colspan="2"><font color=ffffff><center>聯系人詳細信息</center></font></td></tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>姓 名:</td><td width="70%" bgColor=#ffffff> <? echo "$row[name]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>性 別:</td><td width="70%" bgColor=#ffffff> <? echo "$row[sex]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>公 司:</td><td width="70%" bgColor=#ffffff> <? echo "$row[company]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>職 稱:</td><td width="70%" bgColor=#ffffff> <? echo "$row[post]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>地 址:</td><td width="70%" bgColor=#ffffff> <? echo "$row[address]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>郵編區號:</td><td width="70%" bgColor=#ffffff> <? echo "$row[code]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>國 家:</td><td width="70%" bgColor=#ffffff> <? echo "$row[country]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>公司電話:</td><td width="70%" bgColor=#ffffff> <? echo "$row[phone1]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>傳 真:</td><td width="70%" bgColor=#ffffff> <? echo "$row[phone2]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>家中電話:</td><td width="70%" bgColor=#ffffff> <? echo "$row[phone3]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>行動電話:</td><td width="70%" bgColor=#ffffff> <? echo "$row[phone4]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>電 郵:</td><td width="70%" bgColor=#ffffff> <? echo "$row[email]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>網 址:</td><td width="70%" bgColor=#ffffff> <? echo "$row[http]";?></td>
</tr>
<tr height="24">
<td width="30%" bgColor=#ffffff align=center>備 注:</td><td width="70%" bgColor=#ffffff> <? echo "$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;"> </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">
© 2006 上海明宏生物工程有限公司</td>
</tr>
</table>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -