forked from g33kyrash/Online-Banking-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
display_beneficiary.php
64 lines (55 loc) · 2.07 KB
/
display_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
<?php
session_start();
if(!isset($_SESSION['customer_login']))
header('location:index.php');
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Display Beneficiary</title>
<link rel="stylesheet" href="newcss.css">
<style>
.content_customer table,th,td {
padding:6px;
border: 1px solid #2E4372;
border-collapse: collapse;
text-align: center;
}
</style>
</head>
<?php include 'header.php' ?>
<div class='content_customer'>
<?php include 'customer_navbar.php'?>
<div class="customer_top_nav">
<div class="text">Welcome <?php echo $_SESSION['name']?></div>
</div>
<?php
include '_inc/dbconn.php';
$sender_id=$_SESSION["login_id"];
$sql="SELECT * FROM beneficiary1 WHERE sender_id='$sender_id'";
$result= mysql_query($sql) or die(mysql_error());
?>
<br><br><br>
<h3 style="text-align:center;color:#2E4372;"><u>Added Beneficiary</u></h3>
<form action="delete_beneficiary.php">
<table align="center">
<th>Id</th>
<th>Name</th>
<th>Beneficiary 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[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="DELETE BENEFICIARY" class='addstaff_button'/></td></tr></table>
</form>
</div>
<?php include 'footer.php'?>