-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
61 lines (46 loc) · 1.41 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
53
54
55
56
57
58
59
60
61
<?php
include_once "php/connect.php";
$page = "index";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<?php include_once "php/keywords.php";?>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/jquery.slides.min.js"></script>
<script type="text/javascript" src="js/base.js"></script>
</head>
<body>
<!-- header -->
<?php include_once "php/header.php";?>
<!-- header end -->
<!-- slider -->
<?php include_once "php/index/slider.php";?>
<!-- sliker end -->
<!-- product class list -->
<?php include_once "php/index/product_class_list.php";?>
<!-- product class list end -->
<!-- index product list -->
<?php include_once "php/index/index_product_list.php";?>
<!-- index product list end -->
<!-- product list -->
<?php include_once "php/index/product_list.php";?>
<!-- product list end -->
<!-- news list -->
<?php include_once "php/index/news_list.php";?>
<!-- news list end -->
<!-- footer -->
<?php include_once "php/footer.php";?>
<!-- footer end -->
<div class="return_top">
<a href="javascript:void(0)" title="回到顶部"></a>
</div>
</body>
</html>
<?php
mysqli_close($link);
?>