-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfabuzhaopin.php
35 lines (30 loc) · 947 Bytes
/
fabuzhaopin.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
<?php
session_start();
$user=$_SESSION['user'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>企业发布招聘信息</title>
<style>
body {
background-color: #cfd3d1;
}
</style>
</head>
<body>
<div>
<form action="qiye_fabu.php" method="post">
<p>企业名称:
<?php echo $user ?> </p>
<p>职位名称: <input type="text" name="Zname" /></p>
<p>招聘人数: <input type="text" name="Znumber" /></p>
<p>薪资(元): <input type="text" name="Zmoney" /></p>
<input type="submit" value="发布" />
</form>
</div>
</body>
</html>