-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathclose.php
114 lines (98 loc) · 3.1 KB
/
close.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<!--
Transit by TEMPLATED
templated.co @templatedco
Released for free under the Creative Commons Attribution 3.0 license (templated.co/license)
-->
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Generic - Transit by TEMPLATED</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<script src="js/jquery.min.js"></script>
<script src="js/skel.min.js"></script>
<script src="js/skel-layers.min.js"></script>
<script src="js/init.js"></script>
<noscript>
<link rel="stylesheet" href="css/skel.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/style-xlarge.css" />
</noscript>
</head>
<body>
<!-- Header -->
<?php include('navbar.php'); ?>
<!-- Main -->
<section id="main" class="wrapper">
<div class="container">
<header class="major">
<h2>Generic</h2>
<p>Lorem ipsum dolor sit amet nullam id egestas urna aliquam</p>
</header>
<form method="post">
<h2>close your account</h2>
<table cellpadding="5" cellspacing="0" border="1">
<tr>
<td>account Number</td>
<td><input type="number" name="account" placeholder="Account Number"></td>
</tr>
<tr>
<td>username</td>
<td><input type="text" name="username" placeholder="username"></td>
</tr>
<tr>
<td>password</td>
<td><input type="password" name="password" placeholder="password"></td>
</tr>
<tr>
<td><input type="submit" name="submit" value="submit"></td>
<td><input type="reset" name="reset" value="reset"></td>
</tr>
</table>
</form>
<?php
// insert
if(isset($_POST['submit'])){
$account = $_POST['account'];
$username = $_POST['username'];
$password = $_POST['password'];
$query = "SELECT * FROM create_acc WHERE accountno='$account'";
$fire = mysqli_query($connect,$query) or die(mysqli_error($connect));
$user = mysqli_fetch_array($fire);
/*echo $user['password']."<br>";
echo $user['username']."<br>";
echo $user['accountno'];*/
//echo $user['amount'];
//echo $user['amount']."<br>";
// ACCOUNT NUMBER VALIDATION
$account_valid = false;
if($account == $user['accountno']){
if($username == $user['username']){
if($password == $user['password']){
//echo "your account is valid<br>";
$account_valid =true;
}else{
echo 'you have entered wrong password<br>';
}
}else{
echo 'you have entered wrong username<br>';
}
}else{
echo 'you have entered wrong account number<br>';
}
if($account_valid == true){
$delete_query = "DELETE FROM create_acc WHERE username='$username'";
$fire = mysqli_query($connect,$delete_query) or die(mysqli_error($connect));
if($fire) echo "you have successfully close account";
}
}
?>
</div>
</section>
<!-- Footer -->
<?php include('footer.php'); ?>
</body>
</html>