Advertisement
idpasaran

Untitled

Feb 25th, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | None | 0 0
  1. <button onclick="sembunyikan()">Click Me</button>
  2. <?php
  3. $no = 1;
  4. $total = $no++;
  5. foreach ($result as $data_litigasi ) { ?>
  6. <tr <?php if ($total > 1) {echo 'id="hide" style="display:none;"';} ?> >
  7.                                         <!-- <td style="text-alipgn: center;">A</td> -->
  8.                                         <td style="text-align: center;"><?php echo $total; ?></td>
  9.                                         <td><?php echo date_format(date_create($data_litigasi['TANGGAL']),"d M Y"); ?></td>
  10.                                         <td><?php echo $data_litigasi['TINDAKAN']; ?></td>
  11.                                         <td><?php echo $data_litigasi['HASIL']; ?></td>
  12.                                         <td>
  13.  
  14.                                             <a href="<?php echo site_url("non_litigasi/lihat_file/{$data_litigasi['ID_DATA_NON_LITIGASI']}");?>">
  15.                                                 <i class="entypo-up"></i> File</td>
  16.                                             </a>
  17.                                             <td>
  18.                                             <div class="bs-example bs-baseline-top">
  19.                                             </div>
  20.                                         </td>
  21. </tr>
  22. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement