-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathuser_information.php
52 lines (45 loc) · 1.38 KB
/
user_information.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
<html lang="en">
<head>
<meta charset="UTF-8">
<title>个人信息</title>
<link rel="stylesheet" type="text/css" href="个人信息.css">
<link rel="stylesheet" type="text/css" href="public.css"><!--外部样式-->
<script type="text/javascript" src="动画.js"></script>
</head>
<body>
<h1>课业难题交流</h1>
<div id="first" onclick=window.open("首页(待登录).html") onmouseover="over(this)" onmouseout="out(this)"></div>
<div id="textOne">
<p>退出登录</p>
</div>
<div id="second" onclick=window.open("提问.html") onmouseover="over(this)" onmouseout="out(this)"></div>
<div id="textTwo">
<p>我要提问</p>
</div>
<div id="three" onclick=window.open("shouye(denglu).php") onmouseover="over(this)" onmouseout="out(this)" ></div>
<div id="textThree">
<p>我要搜索</p>
</div>
<div class="items" id="itemOne">
<p>用户名:</p>
<?php
session_start();
echo $_SESSION['G_id'];//显示用户名
?>
</div>
<br>
<div class="items" id="itemTwo">
<p>姓名:</p>
<?php
echo $_SESSION['G_name'];//显示姓名
?>
</div>
<br>
<div class="items" id="itemThree">
<p>学号:</p>
<?php
echo $_SESSION['G_num'];//显示学号
?>
</div>
</body>
</html>