-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.php
70 lines (46 loc) · 1.38 KB
/
account.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?php
$active = "Account";
include("db.php");
include("functions.php");
include("header.php");
?>
<!-- Breadcrumb Section Begin -->
<div class="breacrumb-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="breadcrumb-text product-more">
<a href="index.php"><i class="fa fa-home"></i> Home</a>
<span>Account</span>
</div>
</div>
</div>
</div>
</div>
<!-- #content Begin -->
<div class="container">
<div class="insider row">
<div class="col-md-3 col-8" style="padding: 20px 0;">
<?php
include("sidebar.php");
?>
</div>
<div class="col-md-8 col-10" style="padding:20px 0">
<?php
if (isset($_GET['orders'])) {
echo " <h4 class='card' style='text-align: center; margin: 0 0 30px 0;font-weight:600;padding:10px 0 '>My Orders</h4>";
include("orders.php");
}
if (isset($_GET['details'])) {
echo " <h4 class='card' style='text-align: center; margin: 0 0 30px 0;font-weight:600;padding:10px 0 '>Account Details </h4>";
include("details.php");
}
?>
</div>
</div>
</div>
<?php
include('footer.php');
?>
</body>
</html>