-
Notifications
You must be signed in to change notification settings - Fork 0
/
calendar_of_events.php
34 lines (32 loc) · 1.22 KB
/
calendar_of_events.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 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 = mysqli_query($conn,"select * from content where title = 'Calendar' ")or die(mysqli_error());
$mission_row = mysqli_fetch_array($mission_query);
echo $mission_row['content'];
?>
<hr>
</div>
</div>
</div>
<!-- /block -->
</div>
</div>
</div>
<?php include('footer.php'); ?>
</div>
<?php include('script.php'); ?>
</body>
</html>