-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
75 lines (65 loc) · 2.53 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<?php
// Start de sessie
session_start();
require_once('functions/database.php');
require_once("functions/get_products.php");
require_once("functions/get_chart.php");
// Controleer of er moet worden uitgelogd
if(isset($_POST['action']) && $_POST['action'] == "logout"){
$_SESSION['logged_in'] = 0;
$_SESSION['user_id'] = "";
}
// Definieer de variabele logged_in. Deze wordt later gebruikt om juiste menu items e.d. weer te geven.
if(!isset($_SESSION['logged_in'])){
$_SESSION['logged_in'] = 0;
$logged_in = $_SESSION['logged_in'];
}else{
$logged_in = $_SESSION['logged_in'];
}
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>PHP Pizza</title>
<meta name="description" content="Pizza's uit Groningen'">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="img/pizzaicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="#">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<?php include("parts/header.php"); ?>
<div class="container" id="navigation_container">
<div class="row">
<?php include("parts/navigation.php"); ?>
<!-- div voor de content -->
<div class="col-sm-9 main">
<!-- welke pagina? -->
<?php
if (isset($_GET["page"])) {
$page = htmlspecialchars($_GET["page"]);
include("parts/{$page}.php");
} else {
include("parts/main.php");
}
?>
</div>
</div>
</div>
<!--<?php include("parts/footer.php"); ?>-->
<!-- javascripts laden -->
<script src="js/jquery-3.2.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/logon.js"></script>
<script src="js/chart.js"></script>
<script src="js/producten.js"></script>
</body>
</html>