-
Notifications
You must be signed in to change notification settings - Fork 0
/
selected.php
203 lines (170 loc) · 7.53 KB
/
selected.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
<?php
include 'config.php';
if(isset($_POST['submit']))
{
$from = $_GET['id'];
$to = $_POST['to'];
$amount = $_POST['amount'];
$sql = "SELECT * from users where uid=$from";
$query = mysqli_query($conn,$sql);
$sql1 = mysqli_fetch_array($query); // returns array or output of user from which the amount is to be transferred.
$sql = "SELECT * from users where uid=$to";
$query = mysqli_query($conn,$sql);
$sql2 = mysqli_fetch_array($query);
// constraint to check input of negative value by user
if (($amount)<0)
{
echo '<script type="text/javascript">';
echo ' alert("Oops! Negative values cannot be transferred")'; // showing an alert box.
echo '</script>';
}
// constraint to check insufficient balance.
else if($amount > $sql1['balance'])
{
echo '<script type="text/javascript">';
echo ' alert("Bad Luck! Insufficient Balance")'; // showing an alert box.
echo '</script>';
}
// constraint to check zero values
else if($amount == 0){
echo "<script type='text/javascript'>";
echo "alert('Oops! Zero value cannot be transferred')";
echo "</script>";
}
else {
// deducting amount from sender's account
$newbalance = $sql1['balance'] - $amount;
$sql = "UPDATE users set balance=$newbalance where uid=$from";
mysqli_query($conn,$sql);
// adding amount to reciever's account
$newbalance = $sql2['balance'] + $amount;
$sql = "UPDATE users set balance=$newbalance where uid=$to";
mysqli_query($conn,$sql);
$sender = $sql1['uname'];
$receiver = $sql2['uname'];
$sql = "INSERT INTO transaction(`sender`, `receiver`, `balance`) VALUES ('$sender','$receiver','$amount')";
$query=mysqli_query($conn,$sql);
if($query){
echo "<script> alert('Transaction Successful');
window.location='transactionhistory.php';
</script>";
}
$newbalance= 0;
$amount =0;
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transaction</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/table.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<style type="text/css">
button{
border:none;
background: #d9d9d9;
}
button:hover{
background-color:#777E8B;
transform: scale(1.1);
color:white;
}
</style>
</head>
<body style="background-color : #E59866 ;">
<nav class="navbar navbar-expand-md navbar-light bg-light">
<a class="navbar-brand" href="index.php" style="color : #C0392B;"><b>SPARK FUND BANK</b></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.php" style="color : #C0392B;"><b>Home</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="createuser.php" style="color : #C0392B;"><b>Customer List</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="transfermoney.php" style="color : #C0392B;"><b>Transfer Money</b></a>
</li>
<li class="nav-item">
<a class="nav-link" href="transactionhistory.php" style="color : #C0392B;"><b>Transaction History</b></a>
</li>
</div>
</nav>
<div class="container">
<h2 class="text-center pt-4" style="color : black;">Transaction</h2>
<?php
include 'config.php';
$sid=$_GET['id'];
$sql = "SELECT * FROM users where uid=$sid";
$result=mysqli_query($conn,$sql);
if(!$result)
{
echo "Error : ".$sql."<br>".mysqli_error($conn);
}
$rows=mysqli_fetch_assoc($result);
?>
<form method="post" name="tcredit" class="tabletext" ><br>
<div>
<table class="table table-striped table-condensed table-bordered">
<tr style="color : black;">
<th class="text-center">Id</th>
<th class="text-center">Name</th>
<th class="text-center">Email</th>
<th class="text-center">Balance</th>
</tr>
<tr style="color : black;">
<td class="py-2"><?php echo $rows['uid'] ?></td>
<td class="py-2"><?php echo $rows['uname'] ?></td>
<td class="py-2"><?php echo $rows['email'] ?></td>
<td class="py-2"><?php echo $rows['balance'] ?></td>
</tr>
</table>
</div>
<br><br><br>
<label style="color : black;"><b>Transfer To:</b></label>
<select name="to" class="form-control" required>
<option value="" disabled selected>Choose</option>
<?php
include 'config.php';
$sid=$_GET['id'];
$sql = "SELECT * FROM users where uid!=$sid";
$result=mysqli_query($conn,$sql);
if(!$result)
{
echo "Error ".$sql."<br>".mysqli_error($conn);
}
while($rows = mysqli_fetch_assoc($result)) {
?>
<option class="table" value="<?php echo $rows['uid'];?>" >
<?php echo $rows['uname'] ;?> (Balance:
<?php echo $rows['balance'] ;?> )
</option>
<?php
}
?>
<div>
</select>
<br>
<br>
<label style="color : black;"><b>Amount:</b></label>
<input type="number" class="form-control" name="amount" required>
<br><br>
<div class="text-center" >
<button class="btn mt-3" name="submit" type="submit" id="myBtn" >Transfer</button>
</div>
</form>
</div>
<footer class="text-center mt-5 py-2">
<p>© 2021. Made by <b>AYUSH PRAJAPATI</b> <br> Ayush Prajapati Foundation</p>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>