-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbackpack_sidebar.php
30 lines (29 loc) · 1.33 KB
/
backpack_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
30
<div class="span3" id="sidebar">
<img id="avatar" class="img-polaroid" src="admin/<?php echo $row['location']; ?>">
<?php include('count.php'); ?>
<ul class="nav nav-list bs-docs-sidenav nav-collapse collapse">
<li class=""><a href="dashboard_student.php"><i class="icon-chevron-right"></i><i class="icon-group"></i> My Class</a></li>
<li class="">
<a href="student_notification.php"><i class="icon-chevron-right"></i><i class="icon-info-sign"></i> Notification
<?php if($not_read == '0'){
}else{ ?>
<span class="badge badge-important"><?php echo $not_read; ?></span>
<?php } ?>
</a>
</li>
<?php
$message_query = mysqli_query($conn,"select * from message where reciever_id = '$session_id' and message_status != 'read' ")or die(mysqli_error());
$count_message = mysqli_num_rows($message_query);
?>
<li class="">
<a href="student_message.php"><i class="icon-chevron-right"></i><i class="icon-envelope-alt"></i> Message
<?php if($count_message == '0'){
}else{ ?>
<span class="badge badge-important"><?php echo $count_message; ?></span>
<?php } ?>
</a>
</li>
<li class="active"><a href="backpack.php"><i class="icon-chevron-right"></i><i class="icon-suitcase"></i> Backpack</a></li>
</ul>
<?php /* include('search_other_class.php'); */ ?>
</div>