PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Danh sách sản phẩm</title> </head> <body> <?php include 'dbcon.php'; $db = new dbcon(); $limit = 10; // Số sản phẩm trên 1 trang $page = isset($_GET['page']) ? $_GET['page'] : 1; // Trang hiện tại $start = ($page - 1) * $limit; // Vị trí bắt đầu lấy sản phẩm $total = $db->TongSoSanPham(); // Tổng số sản phẩm $total_pages = ceil($total / $limit); // Tổng số trang ?> <table border="1"> <tr> <th>ID</th> <th>Tên sản phẩm</th> <th>Giá</th> <th>Hình ảnh</th> </tr> <?php $result = $db->ListSanPhamTheoViTri($start, $limit); while ($row = mysqli_fetch_assoc($result)) { echo "<tr>"; echo "<td>" . $row['id'] . "</td>"; echo "<td>" . $row['ten_san_pham'] . "</td>"; echo "<td>" . $row['gia'] . "</td>"; echo "<td><img src='" . $row['hinh_anh'] . "' width='100'></td>"; echo "</tr>"; } ?> </table> <?php // Phần điều hướng trang for ($i = 1; $i <= $total_pages; $i++) { echo "<a href='dsSanPham.php?page=$i'>$i</a> "; } ?> </body> </html>
Show:  
Copy Clear