-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcarddel.php
More file actions
81 lines (72 loc) · 2.79 KB
/
carddel.php
File metadata and controls
81 lines (72 loc) · 2.79 KB
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
<?php
require_once('dbconfig.php');
$db = new operations();
if(isset($_GET['D_ID']))
{
global $db;
$ID = $_GET['D_ID'];
if($db->Delete_payment_Record($ID))
{
$db->set_messsage('<div class="alert alert-danger"> Your Record Has Been Deleted </div>');
//header("location:view.php");
}
else
{
$db->set_messsage('<div class="alert alert-danger"> Something Wrong to Delete the Record </div>');
}
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Delete Card</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script src="https://kit.fontawesome.com/3b4f2ecc11.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"
integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous">
</script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"
integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-light">
<nav class="nav" id="topbar">
<div class="logo">
<a href="index.html"><img src="img/EPALM.png" style="width:80px;height:80px;" ></a>
</div>
<div id="mainListDiv" class="main_list">
<ul class="navlinks">
<li> <a href="payment.html">Payment</a></li>
<li> <a href="events.html">Events</a></li>
<li><a href="register.html">Register</a> </li>
</ul>
</div>
</nav>
<br><br><br><br><br><br>
<center>
<h2>
Card Deleted Successfully!
</h2>
<br><br>
<a href="index.html"><h5>
Return to home page
</h5></a>
</center>
<footer class="my-5 pt-5 text-muted text-center text-small">
<p class="mb-1">EPALM</p>
<p class="mb-1">Made with <i class="fas fa-heart"></i> by</p>
<ul class="list-inline">
<li class="list-inline-item">Aryan Vats</li>
<li class="list-inline-item">Arohan Mishra</li>
<li class="list-inline-item">Aditya Joshi</li>
</ul>
</footer>
</div>
</body>
</html>