-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
31 lines (31 loc) · 1.11 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
<?php
include $_SERVER['DOCUMENT_ROOT'].'/Globals/db_connect.php';
include $_SERVER['DOCUMENT_ROOT'].'/Globals/functions.php';
sec_session_start();
?>
<html>
<head>
<link href="css/index.css" rel="stylesheet" type="text/css">
<meta name="MSSmartTagsPreventParsing" content="true" />
<meta name="author" content="Corey David Herrera" />
<title>GIZ</title>
</head>
<body>
<div id="page-container">
<div id="main-nav"><?php// include("nav/nav1/nav1.html");?></div>
<div id="nav3"><?php include('nav/nav3/nav3.php');?></div>
<?php include('nav/nav2/nav2_switcher.php');?>
<div class="padding"><?php include("nav/nav2/nav2.php");?></div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/nav2links.js"></script>
<div id="content"><?php include('content_switcher.php');?></div>
<div id="footer">
<div id="altnav"><?php include("nav/footer/footer.php");?></div>
Copyright © Global Technology Restoration Services Corp
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/footerlinks.js"></script>
</div>
</body>
</html>