Advertisement
Rahardyan

index

Nov 22nd, 2024
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.67 KB | None | 0 0
  1. <?php
  2. require 'db.php';
  3.  
  4. $query = "
  5.    SELECT items.*, categories.name AS category_name
  6.    FROM items
  7.    LEFT JOIN categories ON items.category_id = categories.id
  8. ";
  9. $result = mysqli_query($conn, $query);
  10. ?>
  11. <!DOCTYPE html>
  12. <html>
  13. <head>
  14.     <title>Inventory</title>
  15.     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  16. </head>
  17. </html>
  18. <body>
  19.     <h1>Daftar Barang</h1>
  20.     <a href="create.php" class="btn btn-primary mb-3">Tambah Barang</a>
  21.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
  22.     <table class="table table-bordered">
  23.         <thead>
  24.             <tr>
  25.                 <th>Nama Barang</th>
  26.                 <th>Kategori</th>
  27.                 <th>Jumlah</th>
  28.                 <th>Harga</th>
  29.                 <th>Aksi</th>
  30.             </tr>
  31.         </thead>
  32.         <tbody>
  33.             <?php while ($row = mysqli_fetch_assoc($result)): ?>
  34.             <tr>
  35.                 <td><?= htmlspecialchars($row['name']) ?></td>
  36.                 <td><?= htmlspecialchars($row['category_name']) ?: 'Tanpa Kategori' ?></td>
  37.                 <td><?= $row['quantity'] ?></td>
  38.                 <td><?= $row['price'] ?></td>
  39.                 <td>
  40.                     <a href="edit.php?id=<?= $row['id'] ?>">Edit</a>
  41.                     <a href="delete.php?id=<?= $row['id'] ?>" onclick="return confirm('Yakin ingin menghapus?')">Hapus</a>
  42.                 </td>
  43.             </tr>
  44.             <?php endwhile; ?>
  45.         </tbody>
  46.     </table>
  47. </body>
  48. </html>
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement