-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtop2.php
75 lines (63 loc) · 2.63 KB
/
top2.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
<?php
session_start();
error_reporting(1);
?>
<center>
<table width=100% border=0>
<tr>
<td rowspan=2><img src="image\\logo.jpg" style="width:216px; height:68px"> </td>
<td style="font-size:x-small;">
<?php
echo $_SESSION['email'];
?>
欢迎光临鲜花礼品网</td>
<td style="background:url('image/topxmenubg.jpg'); font-size:x-small;text-align:center;">
<a href="javascript:void(0)" style="text-decoration:none;" id="logout">退出</a>
</td>
</tr>
<tr>
<td>
</td>
<td style="text-align:right;"><img src="image\\ttel.jpg"></td>
</tr>
<tr><td colspan=3 style="background:url('image/bg-navbox.png'); font-size: small;text-align:center; width:999px;height:40px">
<span style=" color:White;"> |</span>
<a href="index.php" style="text-decoration:none;"><span style=" color:White; font-weight:bold; font-size:medium; font-family:宋体"> 前台主页</span></a>
<span style=" color:White;"> |</span>
<a href="adminindex.php" style=" text-decoration:none;"><span style=" color:White; font-weight:bold; font-size:medium; font-family:宋体">后台主页</span></a>
<span style=" color:White;"> |</span>
<a href="adminindex.php" style=" text-decoration:none;"><span style=" color:White; font-weight:bold; font-size:medium; font-family:宋体">鲜花管理</span></a>
<span style=" color:White;"> |</span>
<a href="adminOrderList.php" style=" text-decoration:none;"><span style=" color:White; font-weight:bold; font-size:medium; font-family:宋体">订单管理</span></a>
<span style=" color:White;"> |</span>
<a href="showflower.php" style=" text-decoration:none;"><span style=" color:White; font-weight:bold; font-size:medium; font-family:宋体">评价管理</span></a>
<span style=" color:White;"> |</span>
</td>
</tr>
<tr><td colspan=3 style="background:url('image/search_bg.jpg'); font-size: small;text-align:center; width:999px;height:35px">
<span style="font-weight:bold; font-size:x-small; font-family:宋体">
</span>
</td>
</tr>
</table></center>
<script>
$(function () {
$("#logout").click(function () {
$.ajax({
url:"dealAdmin.php",
type:"post",
dataType:"json",
data:{str:"logout"},
success: function (data) {
if(data.status==1)
window.location.href="adminlogin.php";
}
})
})
})
</script>