forked from dilanWijerathne/phpmyreservation
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
43 lines (26 loc) · 1.08 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
<?php include_once('main.php'); ?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<noscript><meta http-equiv="refresh" content="0; url=error.php?error_code=2"></noscript>
<script src="js/jquery.js" type="text/javascript"></script>
<script src="js/jquery-cookies.js" type="text/javascript"></script>
<script src="js/jquery-base64.js" type="text/javascript"></script>
<?php include('js/header-js.php'); ?>
<script src="js/main.js" type="text/javascript"></script>
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="shortcut icon" href="img/favicon.ico">
<title><?php echo global_title . ' - ' . global_organization; ?></title>
</head>
<body>
<div id="notification_div"><div id="notification_inner_div"><div id="notification_inner_cell_div"></div></div></div>
<div id="header_div"><?php include('header.php'); ?></div>
<h1><?php echo global_title; ?></h1>
<h2><?php echo global_organization; ?></h2>
<div id="content_div"></div>
<div id="preload_div">
<img src="img/loading.gif" alt="Loading">
</div>
</body>
</html>