-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (48 loc) · 1.18 KB
/
index.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
<?php
/**
* Created by PhpStorm.
* User: admin
* Date: 2016/9/18
* Time: 18:30
*/
include_once 'class/main.class.php';
$db = db::GET_OBJ();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>首页</title>
<link rel="stylesheet" type="text/css" href="style/semantic.min.css">
<link rel="stylesheet" type="text/css" href="style/css/document.css">
<link rel="stylesheet" type="text/css" href="public/public.css">
</head>
<body>
<div class="ui sidebar inverted vertical menu">
<h4 class="ui horizontal inverted divider">MENU</h4>
<?php
$data = $db->get_db_data('type,menu','document_menu');
foreach ($data as $value){
echo "<a class='item' href = 'document/{$value[0]}'>{$value[1]}</a>";
}
?>
</div>
<div class="pusher">
<!-- Site content !-->
<?php
include_once 'public/public.php';
?>
<div>
<?php
var_dump($_SESSION);
echo "<hr>";
var_dump($_COOKIE);
?>
</div>
</div>
</body>
<script src="style/js/jquery.js"></script>
<script src="style/semantic.min.js"></script>
<script src="style/js/document.js"></script>
<script src="public/public.js"></script>
</html>