Advertisement
Guest User

Untitled

a guest
Feb 18th, 2020
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <table class="table">
  2. <thead>
  3. <tr>
  4. <th>NO</th>
  5. <th>JUDUL</th>
  6. <th>KATEGORI</th>
  7. <th>DESKRIPSI</th>
  8. <th>GAMBAR</th>
  9. <th>ACTION</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php
  14. $galeri = $this->Galeri_m->select_db();
  15. $no = 1;
  16. foreach ($galeri as $row ) {
  17. ?>
  18. <tr>
  19. <th scope="row"><?php echo $no++;?></th>
  20. <td><?php echo $row->judul_foto;?></td>
  21. <td><img src="<?php echo base_url();?>assets/images/<?php echo $row->foto;?>" style="width: 80px"></td>
  22. <td><?php echo $row->ket_foto;?></td>
  23. <td>
  24. <a class="btn btn-info" href="<?php echo site_url('galeri/select_by/'.$row->id_galeri);?>">EDIT</a>
  25. <a class="btn btn-danger" href="<?php echo site_url('galeri/delete/'.$row->id_galeri);?>" onclick="return confirm('Apakah Anda Ingin Menghapus Data Ini??')">DELETE</a>
  26. </td>
  27. </tr>
  28. <?php } ?>
  29. </tbody>
  30. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement