-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
37 lines (37 loc) · 1.44 KB
/
about.php
File metadata and controls
37 lines (37 loc) · 1.44 KB
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
<?php include('header_dashboard.php'); ?>
<body id="class_div">
<?php include('navbar_about.php'); ?>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12" id="content">
<div class="row-fluid">
<!-- block -->
<div class="block">
<div class="navbar navbar-inner block-header">
<div id="" class="muted pull-right"><a href="index.php"><i class="icon-arrow-left"></i> Back</a></div>
</div>
<div class="block-content collapse in">
<div class="span12">
<?php
$mission_query = mysql_query("select * from content where title = 'mission' ")or die(mysql_error());
$mission_row = mysql_fetch_array($mission_query);
echo $mission_row['content'];
?>
<hr>
<?php
$mission_query = mysql_query("select * from content where title = 'vision' ")or die(mysql_error());
$mission_row = mysql_fetch_array($mission_query);
echo $mission_row['content'];
?>
</div>
</div>
</div>
<!-- /block -->
</div>
</div>
</div>
<?php include('footer.php'); ?>
</div>
<?php include('script.php'); ?>
</body>
</html>