Advertisement
Guest User

Untitled

a guest
Nov 19th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | None | 0 0
  1. <?php
  2.  
  3. require 'functions.php';
  4. query ("SELECT * FROM data_buku");
  5. $buku = query ("SELECT * FROM data_buku")
  6.  
  7. ?>
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14. <!DOCTYPE html>
  15. <html>
  16. <head>
  17. <title>Data buku</title>
  18. <script type="text/javascript" src="js/jquery-3.1.0.min.js"></script>
  19. <script type="text/javascript" src="DataTables/media/js/jquery.dataTables.min.js"></script>
  20. <link rel="stylesheet" type="text/css" href="DataTables/media/css/jquery.dataTables.min.css">
  21. <link rel="stylesheet" type="text/css" href="css/data.css">
  22. </head>
  23. <body>
  24. <h1>Data Buku Perpustakaan SMK BPPI</h1>
  25. <!--
  26. <a href="tambah.php">Tambah Data Buku</a>
  27. <br><br>
  28. -->
  29. <table id="table1" class="display" border="1" >
  30. <thead>
  31. <tr>
  32. <th>No.</th>
  33. <th>Foto</th>
  34. <th>Id Buku</th>
  35. <th>Nama Buku</th>
  36. <th>Nama Penulis</th>
  37. <th>Tahun Terbit</th>
  38. <th>Tempat Buku</th>
  39. <th>Stock Buku</th>
  40. <th>Aksi</th>
  41.  
  42. </tr>
  43. </thead>
  44.  
  45. <?php $i = 1; ?>
  46. <?php foreach ($buku as $row ) : ?>
  47. <tbody>
  48. <tr>
  49. <td><?= $i; ?></td>
  50. <td><img src="buku/<?= $row["gambar"] ?>" width="30" height="30"></td>
  51. <td><?= $row["id_buku"] ?></td>
  52. <td><?= $row["nama_buku"] ?></td>
  53. <td><?= $row["nama_penulis"] ?></td>
  54. <td><?= $row["tahun_terbit"] ?></td>
  55. <td><?= $row["tempat_buku"] ?></td>
  56. <td><?= $row["stock_buku"] ?></td>
  57. <td><a href="ubah.php?id=<?= $row["id"]; ?>">ubah</a> || <a href="hapus.php?id=<?= $row["id"]; ?>" onclick="return confirm('Apakah Akan di hapus ?');">Hapus</a></td>
  58. </tr>
  59. </tbody>
  60. <?php $i++; ?>
  61. <?php endforeach; ?>
  62.  
  63.  
  64. </table>
  65.  
  66. <script type="text/javascript">
  67. $(document).ready(function(){
  68. $("#table1").DataTable();
  69. });
  70. </script>
  71.  
  72. </body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement