-
Notifications
You must be signed in to change notification settings - Fork 0
/
galerie.php
36 lines (31 loc) · 979 Bytes
/
galerie.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
<!-- Display all the pictures Taken -->
<?php
session_start();
?>
<!DOCTYPE html>
<html id="html" data-username="<?php require_once("function/get_session.php"); echo(get_username_session());?>" data-idnumber="<?php require_once("function/get_session.php"); echo(get_id_session());?>">
<head>
<link rel="stylesheet" type="text/css" href="css/galerie.css">
<link rel="stylesheet" type="text/css" href="css/menu.css">
<link rel="stylesheet" href="fonts/css/font-awesome.min.css">
<link rel="stylesheet" href="css/reset.css">
<meta name="viewport" content="width=device-width, user-scalable=yes" />
<title>Hero Gallery! </title>
</head>
<body id="body">
<?php
$rootname = getcwd();
require_once($rootname.'/nav/menu.php');
menu();
?>
<div id="pagination"></div>
<div id="preview">
</div>
</body>
<script type="text/javascript" src="javascript/preview.js"></script>
<?php
$rootname = getcwd();
require_once($rootname.'/script/script.php');
script();
?>
</html>