oyazhuryachna

v_data_penerbit

Dec 23rd, 2016
6,222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.17 KB | None | 0 0
  1. <p>
  2. <a href="<?php echo base_url();?>index.php/penerbit/form" class="btn btn-primary"><span class="glyphicon glyphicon-plus-sign"></span> Tambah</a>
  3.  
  4. </p>
  5.  
  6. <table class="table">
  7. <thead>
  8.     <tr>
  9.         <th>#</th>
  10.         <th>Kode Penerbit</th>
  11.         <th>Nama Penerbit</th>
  12.         <th>Alamat</th>
  13.         <th>Web Site</th>
  14.         <th>Email</th>
  15.         <th>No. Telepon</th>
  16.         <th>Aksi</th>
  17.        
  18.     </tr>
  19. </thead>
  20. <tbody>
  21. <?php
  22. if(isset($list_penerbit)){
  23.     $no=null;
  24.     foreach($list_penerbit as $row){
  25.     $no++; 
  26.    
  27.     echo'<tr>
  28.     <td>'.$no.'</td>
  29.     <td>'.$row['kode_penerbit'].'</td>
  30.     <td>'.$row['nama_penerbit'].'</td>
  31.     <td>'.$row['kota_penerbit'].'</td>
  32.     <td>'.$row['website_penerbit'].'</td>
  33.     <td>'.$row['email_penerbit'].'</td>
  34.     <td>'.$row['telepon_penerbit'].'</td>
  35.     <td>
  36.         <a href="'.base_url().'index.php/penerbit/form/'.$row['kode_penerbit'].'">
  37.         <span class="glyphicon glyphicon-pencil" title="Edit"></span></a>
  38.         &nbsp;
  39.         <a OnClick="javascript:return(window.confirm(\'Anda yakin akan menghapus data ??\')) " href="'.base_url().'index.php/penerbit/hapus/'.$row['kode_penerbit'].'">
  40.         <span class="glyphicon glyphicon-trash" title="Hapus"></span></a>
  41.     </td>
  42.     </tr>';
  43.  
  44.     }
  45. }
  46.  
  47. ?>
  48. </tbody>
  49. </table>
Advertisement
Add Comment
Please, Sign In to add comment