-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
40 lines (40 loc) · 1.04 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
<?php
error_reporting(E_ALL ^ E_NOTICE ^ E_WARNING);
define('INCHK', true);
require_once 'login.php';
?>
<html>
<head>
<title></title>
<link type="text/css" rel="stylesheet" href="css/main.css"/>
<link type="text/css" rel="stylesheet" href="css/acc.css"/>
<link type="text/css" rel="stylesheet" href="css/slide.css"/>
<link type="text/css" rel="stylesheet" href="css/none.css"/>
<script type="text/javascript" src="js/jquery-latest.js"/></script>
<!-- PNG FIX for IE6 -->
<!-- http://24ways.org/2007/supersleight-transparent-png-in-ie6 -->
<!--[if lte IE 6]>
<script type="text/javascript" src="js/pngfix/supersleight-min.js"></script>
<![endif]-->
<script type="text/javascript" src="js/acc.js"></script>
<script type="text/javascript" src="js/slide.js"></script>
<script type="text/javascript" src="js/jqclk.js"></script>
</head>
<body>
<?php
include 'panel.php';
?>
<?php
include 'header.php';
?>
<?php
include 'nav.php';
?>
<?php
include 'mainc.php';
?>
<?php
include 'footer.php';
?>
</body>
</html>