-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
29 lines (28 loc) · 1 KB
/
sidebar.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
<div class="sidebar_container">
<div class="sidebar">
<div class="sidebar_item">
<h2>Notice</h2>
<?php
include('config.php');
$statement = $db->prepare("SELECT * FROM tbl_post WHERE cat_name='Notice' ORDER BY post_id DESC");
$statement->execute();
$result = $statement->fetchAll(PDO::FETCH_ASSOC);
foreach($result as $row)
{
?>
<h3><?php echo $row['post_date'];?></h3>
<h4><?php echo $row['post_title'];?></h4>
<p><?php echo $row['post_description'];?></p>
<?php
}
?>
</div><!--close sidebar_item-->
</div><!--close sidebar-->
<div class="sidebar">
<div class="sidebar_item">
<h2>Contact Info</h2>
<p>Phone: +88-01914840253</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div><!--close sidebar_item-->
</div><!--close sidebar-->
</div><!--close sidebar_container-->