-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.php
More file actions
81 lines (80 loc) · 2.86 KB
/
main.php
File metadata and controls
81 lines (80 loc) · 2.86 KB
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
<?php
require(dirname(__FILE__)."/include/config.php");
?>
<!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/2019/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<link href="style/main.css" rel="stylesheet" type="text/css" />
<title>系统菜单</title>
</head>
<body>
<table width="100%" border="0" id="table_style_all" cellpadding="0" cellspacing="0">
<tr>
<td id="table_style" class="l_t"> </td>
<td> </td>
<td id="table_style" class="r_t"> </td>
</tr>
<tr>
<td> </td>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="2">
<tr>
<td><strong> <?php echo $cfg_au_version;?>常规操作</strong></td>
</tr>
<tr>
<td id="row_style">
<a href="system_basic_cp.php"><img src="images/normal_1.gif" border="0"></a>
<img src="images/arrow_to.gif" border="0">
<a href="system_rk.php"><img src="images/normal_2.gif" border="0"></a>
<img src="images/arrow_to.gif" border="0">
<a href="system_kc.php"><img src="images/normal_4.gif" border="0"></a>
</td>
</tr>
<tr>
<td id="row_style">
<a href="sale.php"><img src="images/normal_3.gif" border="0"></a>
<img src="images/arrow_to.gif" border="0">
<a href="system_money.php"><img src="images/normal_5.gif" border="0"></a>
<img src="images/arrow_to.gif" border="0">
<a href="report.php"><img src="images/normal_6.gif" border="0"></a> </td>
</tr>
<tr>
<td>
<table width="100%" border="0" cellspacing="0" cellpadding="0" bgcolor="#FFFFFF">
<tr>
<td colspan="2" style="height:35px;background-color:#4176BF;font:bold 13px Arial;"> <?php echo $cfg_au_version;?>开发团队</td>
</tr>
<tr class="row_color_normal">
<td width="30%"> 版权所有</td>
<td> <?php echo "<a href='http://www.suyi1995.com' target='_blank'>SUYANG</a>"; ?></td>
</tr>
<tr class="row_color_gray">
<td> 总策划兼项目负责人</td>
<td> SUYANG</td>
</tr>
<tr class="row_color_normal">
<td> 产品官方网站</td>
<td> <?php echo "<a href='http://www.suyi1995.com' target='_blank'>www.suyi1995.com</a>"; ?></td>
</tr>
<tr class="row_color_gray">
<td> 咨询地址</td>
<td> <?php echo "<a href='http://www.suyi1995.com' target='_blank'>SUYANG</a>"; ?></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td> </td>
</tr>
<tr>
<td id="table_style" class="l_b"> </td>
<td> </td>
<td id="table_style" class="r_b"> </td>
</tr>
</table>
<?php
?>
</body>
</html>