forked from bee-san/AnvilHack_IV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.php
40 lines (34 loc) · 868 Bytes
/
stats.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
<!DOCTYPE html>
<html lang="en">
<?php
$database = include('../config.php');
//test
//echo $database['host'];
?>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
<link href="main.css" rel="stylesheet">
<title>Git Gud or Git Flashd</title>
</head>
<!-- Using include header for all other pages bar the index -->
<?php
include('PHP/header.php');
?>
<!-- Nav bar located in PHP folder -->
<?php
include('PHP/nav.php');
?>
<body>
<!-- Using include to improve readability -->
<?php
include('PHP/getstats.php');
?>
</body>
<!-- Footer bar located in PHP folder -->
<?php
include('PHP/footer.php');
?>
</html>