-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathside_bar.php
More file actions
27 lines (24 loc) · 862 Bytes
/
side_bar.php
File metadata and controls
27 lines (24 loc) · 862 Bytes
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
<div class="userNavbar">
<div class="title">
<a class="titleName" href=""> CESA Voting System</a>
</div>
<div class="navbarImg">
<img src="./images/vote.png" alt="Logo"/>
</div>
<div class="user">
<h1 class="username">
<?php
require 'database/dbcon.php';
try {
$query = $conn->query("SELECT firstname , lastname from voters where voters_id ='" . $_SESSION['voters_id'] . "'");
$row = $query->fetch_array();
?>
<i class="fa fa-arrow fa-fw"></i>Welcome: <?php echo $row['firstname'] . " " . $row['lastname']; ?>
<?php
} catch (Exception $e) {
echo '<i class="fa fa-arrow fa-fw"></i>Error occured : Please reload page';
}
?>
</h1>
</div>
</div>