forked from g33kyrash/Online-Banking-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
staff_beneficiary.php
76 lines (60 loc) · 2.35 KB
/
staff_beneficiary.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
<?php
session_start();
if(!isset($_SESSION['staff_login']))
header('location:staff_login.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Beneficiary Requests</title>
<link rel="stylesheet" href="newcss.css">
<style>
.displaystaff_content table,th,td {
padding:6px;
border: 1px solid #2E4372;
border-collapse: collapse;
text-align: center;
}
</style>
</head>
<?php include 'header.php' ?>
<div class="displaystaff_content">
<?php include 'staff_navbar.php'?>
<h3 style="text-align:center;color:#2E4372;"><u>Beneficiary Requests</u></h3>
<?php
include '_inc/dbconn.php';
$sql="SELECT * FROM beneficiary1 WHERE status='PENDING'";
$result= mysql_query($sql) or die(mysql_error());
?>
<form action="staff_approve_beneficiery.php" method="POST">
<table align="center">
<th>id</th>
<th>Sender</th>
<th>Sender Account No:</th>
<th>Reciever</th>
<th>Reciever Account No:</th>
<th>Status</th>
<?php
while($rws= mysql_fetch_array($result)){
echo "<tr><td><input type='radio' name='customer_id' value=".$rws[0];
echo ' checked';
echo " /></td>";
echo "<td>".$rws[2]."</td>";
echo "<td>".$rws[1]."</td>";
echo "<td>".$rws[4]."</td>";
echo "<td>".$rws[3]."</td>";
echo "<td>".$rws[5]."</td>";
echo "</tr>";
} ?>
</table>
<table align="center">
<tr>
<td>
<input type="submit" name="submit_id" value="APPROVE BENEFICIARY" class='addstaff_button'/>
</td>
</tr>
</table>
</form>
</div>
<?php include 'footer.php'?>