-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsidebar.php
51 lines (32 loc) · 1.45 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
$emal = $_SESSION['customer_email'];
$query = "select * from customer where customer_email = '$emal'";
$run_query = mysqli_query($con,$query);
$row_query = mysqli_fetch_array($run_query);
$cname = $row_query['customer_name'];
$cimage = $row_query['customer_image'];
?>
<div class="card">
<img class="card-img-top" src="img/customer/<?php echo $cimage ?>" alt="<?php echo $cname ?>" style="width:100%">
<h4 style="text-align: center;padding:15px 0">
<?php echo $cname ?>
</h4>
<div class="card-body" style="border-top:0.2px solid #e9e9e9 ;">
<ul class="list-group">
<li class="list-group-item" <?php if (isset($_GET['orders'])) {
echo "style = 'background-color:#fe4231'";
} ?>>
<a href="account.php?orders">
<i class="fa fa-list"></i> My Orders
</a>
</li>
<li class="list-group-item" <?php if (isset($_GET['details'])) {
echo "style = 'background-color:#fe4231'";
} ?>>
<a href="account.php?details">
<i class="fa fa-bolt"></i> My Details
</a>
</li>
</ul>
</div>
</div>