-
Notifications
You must be signed in to change notification settings - Fork 0
/
selectuserdetail.php
155 lines (137 loc) · 5.02 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
155
<?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);
$sql = "SELECT * from users where id=$to";
$query = mysqli_query($conn,$sql);
$sql2 = mysqli_fetch_array($query);
if(($amount)<0)
{
echo 'alert("Unacceptable value entered")';
}
else if($amount > $sql1['balance'])
{
echo 'alert("Insufficient Balance")';
}
else if($amount == 0)
{
echo 'alert("requested value is transferred!..>")'
}
else{
$newbalance = $sql1['balance'] - $amount;
$sql = "UPDATE users set balance=$newbalance where id=$from";
mysqli_query($conn,$sql);
$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 "alert('Transaction sucessfull');
window.location='transactionhistory.php'";
}
$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>
<?php
include 'navbar.php';
?>
<div class="container">
<h2 class="text-center pt-4">Transaction</h2>
<?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><br><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 mt-3" name="submit" type="submit" id="myBtn">Transfer</button>
</div>
</form>
</div>
<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/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>