-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathview.php
More file actions
132 lines (103 loc) · 3.52 KB
/
view.php
File metadata and controls
132 lines (103 loc) · 3.52 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Users Transaction</title>
<style>
/* Basic styling */
body {
background-color: rgba(29, 43, 83, 0.89);
font-family: "Roboto", sans-serif;
background-color: #17B794;
background: rgb(211, 211, 211);
background-color: rgba(29, 43, 83, 0.89);
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
background: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
text-align: center;
/* Center align the content */
}
h2 {
text-align: center;
margin-bottom: 20px;
}
/* Style for the buttons */
.action-button {
display: inline-block;
background-color: #4CAF50;
color: white;
padding: 14px 20px;
margin: 8px 10px;
/* Adjust margin to create space between buttons */
border: none;
border-radius: 5px;
cursor: pointer;
text-decoration: none;
/* Remove underline from anchor tags */
}
.action-button:hover {
background-color: #45a049;
}
/* Table Styling */
table {
width: 100%;
border-collapse: collapse;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #4CAF50;
color: white;
}
</style>
</head>
<body>
<div class="container">
<h2>All Users Transaction</h2>
<table>
<tr>
<th>Transaction ID</th>
<th>User ID</th>
<th>Transaction Type</th>
<th>Amount</th>
<th>Transaction Date</th>
</tr>
<?php
include('includes/db_connection.php');
include('includes/csrftoken.php');
$sql = "SELECT * FROM transactions";
$result = $conn->query($sql);
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
echo "<tr>";
echo "<td>" . $row["TransactionID"] . "</td>";
echo "<td>" . $row["UserID"] . "</td>";
echo "<td>" . $row["transaction_type"] . "</td>";
echo "<td>" . $row["amount"] . "</td>";
echo "<td>" . $row["transaction_Date"] . "</td>";
echo "</tr>";
}
} else {
echo "<tr><td colspan='5'>No transactions found</td></tr>";
}
$conn->close();
?>
</table>
<form action="account.php" method="post" style="display: inline-block;"> <button type="submit" class="action-button">Go Back</button>
<input type="hidden" name="_token" value="<?php echo $_SESSION['_token']; ?>">
</form>
<form action="logout.php" method="post" style="display: inline-block;"> <button type="submit" class="action-button">Logout</button>
</form>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</body>
</html>