Advertisement
taktikhek

Untitled

May 30th, 2019
803
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. <?php if (count($hasil)>0) { ?>
  2. <table id="example1" class="table table-bordered table-striped">
  3. <thead>
  4. <tr>
  5. <th>No</th>
  6. <th>Id User</th>
  7. <th>Username</th>
  8. <th>Nama</th>
  9. <th>Opsi</th>
  10. </tr>
  11. </thead>
  12. <tbody>
  13. <?php
  14. $i = 1;
  15. foreach ($hasil as $key => $list) { ?>
  16. <tr>
  17. <td><?php echo $i;?></td>
  18. <td><?php echo $list['id_user'];?></td>
  19. <td><?php echo $list['username'];?></td>
  20. <td><?php echo $list['nama'];?></td>
  21. <td><a href="<?=base_url();?>admin/user/edit/<?php echo $list['id_user'];?>">Edit</a> | <a href="<?=base_url();?>admin/user/delete/<?php echo $list['id_user'];?>">Hapus</a></td>
  22. </tr>
  23. <?php $i++; }?>
  24. </tbody>
  25. </table>
  26. <?php }else{
  27. echo "Data Tidak Tersedia!";
  28. }
  29. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement