Untitled
llllunknown
plain_text
2 years ago
3.1 kB
7
Indexable
<div class="table-content"> <table class="table" id="product-table"> <!-- Header của bảng --> <thead> <tr> <th>Account_ID</th> <th>avatar</th> <th>username</th> <th>password</th> <th>email</th> <th>first</th> <th>last</th> <th>Gender</th> <th>Birthday</th> <th>Role</th> <th>Active</th> </tr> </thead> <tbody id="table-body"> <!-- Bảng dữ liệu sẽ được thêm vào đây --> <!-- tr gốc --> <!-- Các hàng dữ liệu khác --> <% AdminDAOs dao = new AdminDAOs(); ResultSet rs = dao.GetAllUser(); while (rs.next()) { %> <tr> <td><%= rs.getInt("Account_ID")%></td> <td><%= rs.getString("avatar")%></td> <td><%= rs.getString("username")%></td> <td><%= rs.getString("password")%></td> <td><%= rs.getString("email")%></td> <td><%= rs.getString("firstName")%></td> <td><%= rs.getString("lastName")%></td> <td><%= rs.getString("gender")%></td> <td><%= rs.getDate("birthday")%></td> <td><%= rs.getInt("role")%></td> <td class="d-flex"> <a class="fa-solid fa-trash fa-xl mr-2 mt-2 " href="/AdminController/deleteOrder/<%= rs.getInt("ID")%>" style="color: black;"></a> <a class="fa-solid fa-pen-to-square fa-xl mt-2 " href="/AdminController/updateOrder/<%= rs.getInt("ID")%>" style="color: black;"></a> </td> <!-- Ô trống --> </tr> <% } %> </tbody> </table> </div>
Editor is loading...