-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayment.php
168 lines (157 loc) · 7.6 KB
/
payment.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
require('./payment-process.php');
?>
<!DOCTYPE HTML>
<html>
<head>
<title>Guide_Me | Admin Payment Manage</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="application/x-javascript"> addEventListener("load", function() { setTimeout(hideURLbar, 0); }, false); function hideURLbar(){ window.scrollTo(0,1); } </script>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel='stylesheet' type='text/css' />
<!-- Custom CSS -->
<link href="css/style.css" rel='stylesheet' type='text/css' />
<link rel="stylesheet" href="css/morris.css" type="text/css"/>
<!-- Graph CSS -->
<link href="css/font-awesome.css" rel="stylesheet">
<!-- jQuery -->
<script src="js/jquery-2.1.4.min.js"></script>
<!-- //jQuery -->
<link href='//fonts.googleapis.com/css?family=Roboto:700,500,300,100italic,100,400' rel='stylesheet' type='text/css'/>
<link href='//fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!-- lined-icons -->
<link rel="stylesheet" href="css/icon-font.min.css" type='text/css' />
<!-- //lined-icons -->
<!-- tables -->
<link rel="stylesheet" type="text/css" href="css/table-style.css" />
<link rel="stylesheet" type="text/css" href="css/basictable.css" />
<script type="text/javascript" src="js/jquery.basictable.min.js"></script>
<script type="text/javascript">
</script>
<!-- //tables -->
</head>
<body>
<div class="page-container">
<!--/content-inner-->
<div class="left-content">
<div class="mother-grid-inner">
<!--header start here-->
<?php include('includes/header.php'); ?>
<div class="clearfix"> </div>
</div>
<!--heder end here-->
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.php">Home</a><i class="fa fa-angle-right"></i>Payments</li>
</ol>
<!--four-grids here-->
<div class="four-grids">
<div class="col-md-3 four-grid">
<div class="four-agileits">
<div class="icon">
<i class="glyphicon glyphicon-user" aria-hidden="true"></i>
</div>
<div class="four-text">
<h3>Total Payments</h3>
<h4><?php echo calculateTotalPayments($paymentData); ?></h4>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
<form id="monthForm" method="post" action="<?php echo $_SERVER["PHP_SELF"] ?>">
<div class="monthselect" style="text-align: right;">
<label for="focusedinput">Months:</label>
<select name="selectedMonth" class="form-select right-align">
<?php
$months = [
1 => 'January', 2 => 'February', 3 => 'March', 4 => 'April',
5 => 'May', 6 => 'June', 7 => 'July', 8 => 'August',
9 => 'September', 10 => 'October', 11 => 'November', 12 => 'December'
];
foreach ($months as $monthNum => $monthName) {
$selected = ($selectedMonth == $monthNum) ? 'selected' : '';
echo "<option value=\"$monthNum\" $selected>$monthName</option>";
}
?>
</select>
<input type="submit" value="Submit">
</div>
</form>
<div class="inner-block">
<div class="agile-tables">
<div class="w3l-table-info">
<h2>Transaction Details</h2>
<table id="table">
<thead>
<tr>
<th>#</th>
<th>Transaction ID</th>
<th>Sender</th>
<th>Receiver </th>
<th>Type</th>
<th>Payment</th>
</tr>
</thead>
<tbody>
<?php
if (!empty($paymentData)) {
$cnt = 1;
foreach ($paymentData as $result) {
?>
<tr>
<td><?php echo htmlentities($cnt); ?></td>
<td><?php echo htmlentities($result['transaction_id']); ?></td>
<td><?php echo htmlentities($result['sender']); ?></td>
<td>
<?php echo htmlentities($result['payment_to']); ?>
</td>
<td><?php echo htmlentities($result['reciever_type']); ?></td>
<td><?php echo htmlentities($result['price']); ?></td>
</tr>
<?php
$cnt++;
}
} else {
echo '<tr><td colspan="6">No data available</td></tr>';
}
?>
</tbody>
</table>
</div>
</div>
</div>
<!--inner block end here-->
<!--copy rights start here-->
<?php include('includes/footer.php'); ?>
</div>
</div>
<!--/sidebar-menu-->
<?php include('includes/sidebarmenu.php'); ?>
<div class="clearfix"></div>
</div>
<script>
var toggle = true;
$(".sidebar-icon").click(function () {
if (toggle)
{
$(".page-container").addClass("sidebar-collapsed").removeClass("sidebar-collapsed-back");
$("#menu span").css({"position": "absolute"});
} else
{
$(".page-container").removeClass("sidebar-collapsed").addClass("sidebar-collapsed-back");
setTimeout(function () {
$("#menu span").css({"position": "relative"});
}, 400);
}
toggle = !toggle;
});
</script>
<!--js -->
<script src="js/jquery.nicescroll.js"></script>
<script src="js/scripts.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- /Bootstrap Core JavaScript -->
</body>
</html>