-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar2.php
More file actions
16 lines (16 loc) · 912 Bytes
/
sidebar2.php
File metadata and controls
16 lines (16 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
$query = "SELECT * FROM users";
$run = mysqli_query($conn, $query);
$countUser = mysqli_num_rows($run);
?>
<div class="list-group sticky-top sticky-offset" id="side-bar">
<a href="studentdashboard.php" class="list-group-item list-group-item-action active" aria-current="true">
<i class="fas fa-tachometer-alt"></i> Dashboard
</a>
<a href="studentMessages.php" class="list-group-item list-group-item-action"><i class="fas fa-file"></i> All
Chat Room <span class="badge bg-warning text-light"></span></a>
<a href="studentdashboard.php" class="list-group-item list-group-item-action"><i class="fas fa-photo-video"></i>
Profile <span class="badge bg-warning text-light"></span></a>
<a href="#" class="list-group-item list-group-item-action"><i class="fas fa-users"></i> All
Settings <span class="badge bg-warning text-light"></span></a>
</div>