forked from akkireddy95/Online-Banking-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_customer.php
79 lines (68 loc) · 2.62 KB
/
delete_customer.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
<?php
session_start();
if(!isset($_SESSION['admin_login']))
header('location:adminlogin.php');
?>
<!DOCTYPE html>
<?php
include '_inc/dbconn.php';
$sql="SELECT * FROM `customer`";
$result= mysql_query($sql) or die(mysql_error());
$sql_min="SELECT MIN(id) from customer";
$result_min= mysql_query($sql_min);
$rws_min= mysql_fetch_array($result_min);
?>
<html>
<head>
<link rel="stylesheet" type="text/css" href="newcss.css"/>
<style>
.displaystaff_content table,th,td {
padding:6px;
border: 1px solid #2E4372;
border-collapse: collapse;
}
</style>
<title>Delete Customer</title>
</head>
<?php include 'header.php'?>
<div class="displaystaff_content">
<?php include 'admin_navbar.php'?>
<form action="editcustomer.php" method="POST">
<table align="center">
<th>id</th>
<th>name</th>
<th>gender</th>
<th>DOB</th>
<th>nominee</th>
<th>account type</th>
<th>address</th>
<th>mobile</th>
<th>email</th>
<?php
while($rws= mysql_fetch_array($result)){
echo "<tr><td><input type='radio' name='customer_id' value=".$rws[0];
if($rws[0]==$rws_min[0]) echo' checked';
echo " /></td>";
echo "<td>".$rws[1]."</td>";
echo "<td>".$rws[2]."</td>";
echo "<td>".$rws[3]."</td>";
echo "<td>".$rws[4]."</td>";
echo "<td>".$rws[5]."</td>";
echo "<td>".$rws[6]."</td>";
echo "<td>".$rws[7]."</td>";
echo "<td>".$rws[8]."</td>";
echo "</tr>";
}
?>
</table>
<table align="center">
<tr>
<td>
<input type="submit" name="submit2_id" value="DELETE CUSTOMER DETAILS" class='addstaff_button'/>
</td>
</tr>
</table>
</form>
</div>
</body>
</html>