-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransfermoney.php
More file actions
109 lines (98 loc) · 4.06 KB
/
transfermoney.php
File metadata and controls
109 lines (98 loc) · 4.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Transfer Money</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">
<style type="text/css">
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a.active {
background-color: #04AA6D;
color: white;
}
button{
transition: 1.5s;
}
button:hover{
background-color:#616C6F;
color: white;
}
</style>
</head>
<body style="background-color : #BDC3C7;">
<?php
include 'config.php';
$sql = "SELECT * FROM users";
$result = mysqli_query($conn,$sql);
?>
<header class="text-gray-600 body-font">
<span class="ml-3 text-xl">Banking System</span>
<div class="topnav">
<a href="index.html" class="mr-5 hover:text-gray-900">Home</a>
<a href="createuser.php" class="mr-5 hover:text-gray-900">Create User</a>
<a href="transfermoney.php" class="mr-5 hover:text-gray-900">Transfer Money</a>
<a href="transactionhistory.php" class="mr-5 hover:text-gray-900">Transfer History</a>
<a class="mr-5 hover:text-gray-900">Contact</a>
</div>
<div class="container">
<h2 class="text-center pt-4" style="color : black;">Transfer Money</h2>
<br>
<div class="row">
<div class="col">
<div class="table-responsive-sm">
<table class="table table-hover table-sm table-striped table-condensed table-bordered" style="border-color:black;">
<thead style="color : black;">
<tr>
<th scope="col" class="text-center py-2">Id</th>
<th scope="col" class="text-center py-2">Name</th>
<th scope="col" class="text-center py-2">E-Mail</th>
<th scope="col" class="text-center py-2">Balance</th>
<th scope="col" class="text-center py-2">Operation</th>
</tr>
</thead>
<tbody>
<?php
while($rows=mysqli_fetch_assoc($result)){
?>
<tr style="color : black;">
<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>
<td><a href="selecteduserdetail.php?id= <?php echo $rows['id'] ;?>"> <button type="button" class="btn" style="background-color : #A569BD;">Transact</button></a></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div>
</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/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>