-
Notifications
You must be signed in to change notification settings - Fork 23
/
joinshow.php
90 lines (88 loc) · 3.24 KB
/
joinshow.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?php
require_once(dirname(__FILE__).'/include/config.inc.php');
//初始化参数检测正确性
$id = empty($id) ? 0 : intval($id);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php echo GetHeader(1,0,0,'人才招聘'); ?>
<link href="templates/default/style/webstyle.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="templates/default/js/jquery.min.js"></script>
<script type="text/javascript" src="templates/default/js/top.js"></script>
</head>
<body>
<!-- header-->
<?php require_once('header.php'); ?>
<!-- /header-->
<!-- banner-->
<div class="subBanner"> <img src="templates/default/images/banner-ir.png" /> </div>
<!-- /banner-->
<!-- notice-->
<div class="subnotice"><strong>网站公告:</strong><?php echo Info(1); ?></div>
<!-- /notice-->
<!-- mainbody-->
<div class="subBody">
<div class="subTitle"> <span class="catname">人才招聘</span> <a href="javascript:history.go(-1);" class="goback">>> 返回</a> <span>您当前所在位置:首页 > 人才招聘</span>
<div class="cl"></div>
</div>
<div class="OneOfTwo">
<div class="jobConts">
<?php
$row = $dosql->GetOne("SELECT * FROM `#@__job` WHERE id=$id");
if(@$row)
{
?>
<strong>职位名称:</strong><br />
<span style="font-size:14px;"><?php echo $row['title']; ?></span>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="20%" height="25"><strong>工作地点:</strong></td>
<td width="20%"><strong>工作性质:</strong></td>
<td width="20%"><strong>招聘人数:</strong></td>
<td width="20%"><strong>性别要求:</strong></td>
<td width="20%"><strong>工资待遇:</strong></td>
</tr>
<tr>
<td height="25"><?php echo $row['jobplace']; ?></td>
<td><?php echo $row['jobdescription']; ?></td>
<td><?php echo $row['employ']; ?></td>
<td><?php if($row['jobsex']==0){echo '不限制';}else if($row['jobsex']==1){echo '男';}else if($row['jobsex']==2){echo '女';} ?></td>
<td><?php echo $row['treatment']; ?></td>
</tr>
<tr>
<td height="25"><strong>有效期限:</strong></td>
<td><strong>工作经验:</strong></td>
<td><strong>学历要求:</strong></td>
<td><strong>语言能力:</strong></td>
<td> </td>
</tr>
<tr>
<td height="25"><?php echo $row['usefullife']; ?></td>
<td><?php echo $row['experience']; ?></td>
<td><?php echo $row['education']; ?></td>
<td><?php echo $row['joblang']; ?></td>
<td> </td>
</tr>
</table>
<strong>职位描述:</strong>
<div class="jobdesc"><?php if(isset($row['workdesc'])){echo $row['workdesc'];}else{echo '暂无职位描述';} ?></div>
<strong>职位要求:</strong>
<div class="jobdesc"><?php if(isset($row['content'])){echo $row['content'];}else{echo '暂无职位要求';} ?></div>
<?php
}
?>
</div>
</div>
<div class="TwoOfTwo">
<?php require_once('lefter.php'); ?>
</div>
<div class="cl"></div>
</div>
<!-- /mainbody-->
<!-- footer-->
<?php require_once('footer.php'); ?>
<!-- /footer-->
</body>
</html>