Advertisement
gujil

table

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