-
Notifications
You must be signed in to change notification settings - Fork 13
/
delete_beneficiary.php
69 lines (58 loc) · 1.87 KB
/
delete_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
<?php
/* Avoid multiple sessions warning
Check if session is set before starting a new one. */
if(!isset($_SESSION)) {
session_start();
}
include "validate_customer.php";
include "connect.php";
include "header.php";
include "customer_navbar.php";
include "customer_sidebar.php";
include "session_timeout.php";
if (isset($_GET['cust_id'])) {
$sql0 = "DELETE FROM beneficiary".$_SESSION['loggedIn_cust_id'].
" WHERE benef_cust_id=".$_GET['cust_id'];
}
$success = 0;
if (($conn->query($sql0) === TRUE)) {
$sql0 = "SELECT MAX(benef_id) FROM beneficiary".$_SESSION['loggedIn_cust_id'];
$result = $conn->query($sql0);
$row = $result->fetch_assoc();
$id = $row["MAX(benef_id)"] + 1;
$sql1 = "ALTER TABLE beneficiary".$_SESSION['loggedIn_cust_id']." AUTO_INCREMENT=".$id;
$conn->query($sql1);
$success = 1;
}
if (isset($_GET['redirect'])) {
$_SESSION['auto_delete_benef'] = true;
header("location:beneficiary.php");
}
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="action_style.css">
</head>
<body>
<div class="flex-container">
<div class="flex-item">
<?php
if ($success = 1) { ?>
<p id="info"><?php echo "Beneficiary Deleted Successfully !"; ?></p>
<?php
}
else { ?>
<p id="info"><?php echo "Error: " . $conn->error . "<br>"; ?></p>
<?php
}
?>
</div>
<?php $conn->close(); ?>
<div class="flex-item">
<a href="beneficiary.php" class="button">Go Back</a>
</div>
</div>
</body>
</html>