-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
48 lines (40 loc) · 1.3 KB
/
admin.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
<?php
if(!isset($_SESSION)){
session_start();
}
if (!isset($_SESSION['id_client'])) {
header("Location:index.php");
}
if($_SESSION['id_client'] > 0){
header("Location:index.php");
}
ob_start();
require_once('modele/gestion_bdd.php');
ob_end_flush();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Ludotheque Admin</title>
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/perso.css">
</head>
<body>
<div class="container">
<div class="row">
<div>
<h1>Ludotheque</h1>
</div>
</div>
<?php include './vue/gestion.php';?>
</div>
</body>
</html>