Advertisement
taktikhek

Untitled

Jun 30th, 2019
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 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 news</th>
  7. <th>newsname</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_news'];?></td>
  19. <td><?php echo $list['judul'];?></td>
  20. <td><?php echo substr($list['isi'],0,50);?></td>
  21. <td><a href="<?=base_url();?>admin/news/edit/<?php echo $list['id_news'];?>">Edit</a> | <a href="<?=base_url();?>admin/news/delete/<?php echo $list['id_news'];?>">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