-
Notifications
You must be signed in to change notification settings - Fork 2
/
header.php
34 lines (23 loc) · 1.12 KB
/
header.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
<?php
define('ROOT_URL', "");
define('INCLUDES_URL', ROOT_URL . "includes/");
define('ADMIN_URL', ROOT_URL . "admin/");
define('CORE_URL', ROOT_URL . "core/");
define('WP_URL', "./wordpress/");
define('CLASSES_URL', ROOT_URL . "classes/");
session_start();
include CORE_URL . 'mysql_connect.php';
?>
<html lang="">
<head>
<title>Society for Student Mess Services</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" type="text/css" href="<?php echo INCLUDES_URL;?>font-awesome/css/font-awesome.min.css" />
<link type="text/css" rel="stylesheet" href="<?php echo INCLUDES_URL;?>css/bootstrap.css" />
<link rel="stylesheet" type="text/css" href="<?php echo INCLUDES_URL;?>css/style.css" />
<link rel="shortcut icon" type="image/png" href="<?php echo INCLUDES_URL;?>favicon.png"/>
<script type="text/javascript" src="<?php echo INCLUDES_URL;?>js/jquery-2.1.1.min.js"></script>
</head>
<!--Fixed navigation bar =======================================================================================-->