-
Notifications
You must be signed in to change notification settings - Fork 0
/
transfer_money.php
97 lines (86 loc) · 4.14 KB
/
transfer_money.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
<?php
include 'config.php';
$sql = "SELECT * FROM users";
$result = mysqli_query($conn,$sql);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TSF Bank</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/table.css">
<link rel="stylesheet" type="text/css" href="css/createuser.css">
<link rel="stylesheet" type="text/css" href="css/contact.css">
<script type="text/javascript" src="bootstrap/js/bootstrap.bundle.min.js"></script>
<link rel = "icon" href = "img/logo.ico" type = "image/x-icon">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #1e272e;">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<h1><a href="index.php">TSF Bank</a></h1>
<ul class="navbar-nav">
<li class="nav-item btn btn-secondary">
<a class="nav-link text-white" href="index.php">Home</a>
</li>
<li class="nav-item btn btn-secondary">
<a class="nav-link link-text text-white" href="http://amlan-007.github.io/Portfolio/">About Me</a>
</li>
<li class="nav-item btn btn-secondary">
<a class="nav-link link-text text-white" href="contactme.php">Contact me</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container">
<h2 class="text-center pt-4">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">
<thead>
<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>
<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="selectuserdetail.php?id= <?php echo $rows['id'] ;?>"> <button type="button" class="btn btn-success">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/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<div id="container">
<div id="header" class="footer">© 2021. Made with ❤️ by <a class="" href="http://amlan-007.github.io/Portfolio/">Amlan Dutta</a><br>
</div>
</div>
</body>
</html>