-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqiye_M.php
35 lines (30 loc) · 891 Bytes
/
qiye_M.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_submit.php" method="post">
<p>企业名称: <?php echo $user ?> </p>
<p>联系方式: <input type="text" name="qtel" /></p>
<p>电子邮箱: <input type="text" name="qemail" /></p>
<p>企业地址: <input type="text" name="qlocal" /></p>
<p>密码: <input type="password" name="qpsw" /></p>
<input type="submit" value="Submit" />
</form>
</div>
</body>
</html>