Advertisement
gujil

table

Jun 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.60 KB | None | 0 0
  1. <div class="row clearfix">
  2.         <div class="col-xs-12 ol-sm-12 col-md-12 col-lg-12">
  3.             <div class="panel-group" id="accordion_17" role="tablist" aria-multiselectable="true">
  4.                 <?php  
  5.                 $minggu = 1;
  6.                
  7.                 $obj = new mahasiswa();
  8.                 $rows = $obj->hadir($id_session);
  9.                 foreach ($rows as $row) {
  10.                     $week = $row["minggu"];
  11.                     ?>
  12.                     <div class="panel">
  13.                         <div class="panel-heading" role="tab" id="headingThree_17">
  14.                             <h4 class="panel-title">
  15.                                 <a class="collapsed" role="button" data-toggle="collapse" data-parent="#accordion_17" href="#collapseThree_<?php echo $week ?>" aria-expanded="false"
  16.                                     aria-controls="collapseThree_<?php echo $week ?>">
  17.                                     <i class="material-icons col-blue">event</i> Minggu Ke-<?php echo $minggu++; ?>
  18.                                 </a>
  19.                             </h4>
  20.                         </div>
  21.                         <div id="collapseThree_<?php echo $week ?>" class="panel-collapse in collapse" role="tabpanel" aria-labelledby="headingThree_17">
  22.                             <div class="panel table-responsive">
  23.  
  24.  
  25.                                 <input type="hidden" name="week[]" class="week" value="<?php echo $week ?>">
  26.  
  27.  
  28.                                 <table class="table table-hover table-bordered">
  29.                                     <thead>
  30.                                         <tr class="bg-blue-grey">
  31.                                             <th width="3%">NO</th>
  32.                                             <th>TANGGAL</th>
  33.                                             <th>WAKTU KERJA</th>
  34.                                             <th>WAKTU ISTIRAHAT</th>
  35.                                             <th>STATUS</th>
  36.                                             <th width="5%">OPSI</th>
  37.                                         </tr>
  38.                                     </thead>
  39.                                     <tbody class="kegiatan">
  40.                                        
  41.                                     </tbody>
  42.                                 </table>
  43.  
  44.                             </div>
  45.                         </div>
  46.                     </div>
  47.                     <?php
  48.                 }
  49.                 ?>
  50.             </div>
  51.         </div>
  52.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement