-
Notifications
You must be signed in to change notification settings - Fork 14
/
selectuserdetail.php
154 lines (126 loc) · 4.97 KB
/
selectuserdetail.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
<?php
include('config.php');
if(isset($_POST['submit']))
{
$from = $_GET['id'];
$to = $_POST['to'];
$amount = $_POST['amount'];
$sql = "SELECT * from users where id=$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 id=$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 id=$from";
mysqli_query($conn,$sql);
// adding amount to reciever's account
$newbalance = $sql2['balance'] + $amount;
$sql = "UPDATE users set balance=$newbalance where id=$to";
mysqli_query($conn,$sql);
$sender = $sql1['name'];
$receiver = $sql2['name'];
$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;
}
}
?>
<?php
include 'nav.php';
?>
<div class="container">
<h1>Transaction</h1>
<?php
include 'config.php';
$sid=$_GET['id'];
$sql = "SELECT * FROM users where id=$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>
<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>
<td class="py-2"><?php echo $rows['id'] ?></td>
<td class="py-2"><?php echo $rows['name'] ?></td>
<td class="py-2"><?php echo $rows['email'] ?></td>
<td class="py-2"><?php echo $rows['balance'] ?></td>
</tr>
</table>
</div>
<br>
<label>Transfer To:</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 id!=$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['id'];?>" >
<?php echo $rows['name'] ;?> (Balance:
<?php echo $rows['balance'] ;?> )
</option>
<?php
}
?>
<div>
</select>
<br>
<br>
<label>Amount:</label>
<input type="number" class="form-control" name="amount" required>
<br><br>
<div class="text-center" >
<button class="btn btn-primary" name="submit" type="submit" id="btn">Transfer</button>
</div>
</form>
</div>
<?php include('footer.php'); ?>
</body>
</html>