Advertisement
blackvee

list.php

Apr 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.46 KB | None | 0 0
  1. <?php echo $this->session->flashdata('hasil'); ?>
  2. <table>
  3.     <tr><th>NIM</th><th>NAMA</th><th>PRODI</th><th></th></tr>
  4.     <?php
  5.     foreach ($mahasiswa as $m){
  6.         echo "<tr>
  7.              <td>$m->nim</td>
  8.              <td>$m->nama</td>
  9.              <td>$m->prodi</td>
  10.              <td>".anchor('mahasiswa/edit/'.$m->nim,'Edit')."
  11.                  ".anchor('mahasiswa/delete/'.$m->nim,'Delete')."</td>
  12.              </tr>";
  13.     }
  14.     ?>
  15. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement