-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
35 lines (30 loc) · 798 Bytes
/
index.php
File metadata and controls
35 lines (30 loc) · 798 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Brown Equipment llc - About BrownEquipment</title>
<?php
require("header.php");
?>
</head>
<?php //connect to database
require('admin/connection.php');
?>
<?php
require('nav.php');
?>
<div class="content-wrap">
<div class="container">
<div class="main-wrap"><div id='wsite-content' class='wsite-elements wsite-not-footer'>
<div class="wsite-spacer" style="width: 70%; text-align: center; margin-left: auto; margin-right: auto;">
<?php
$about = file_get_contents("files/content_about.txt");
echo $about;
?>
</div>
<div class="paragraph" style="text-align:left;"></a>.</div></div></div>
</div><!-- end container -->
</div><!-- end main-wrap -->
<?php
require('footer.php');
?>
</html>