Advertisement
nagahitam1995

tampil_data.php

Jan 17th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.61 KB | None | 0 0
  1. tampil_data.php
  2. <div class="container" align="center">
  3. <div class="col-md-10">
  4. <h3><font color="#f30717"> Tampil Data Karyawan </font></h3>
  5. <br>
  6. <div class="text-left" style="margin-bottom:3px;">
  7. <a href="index.php?hal=tambah" class="btn btn-danger"> Tambah Data </a>
  8. </div>
  9. <table id="dataTables-example" class="table table-striped table-bordered table-hover " align="center">
  10. <tr>
  11. <th><div align="center"> No </div></th>
  12. <th><div align="center"> Tanggal </div></th>
  13. <th><div align="center"> Nip </div></th>
  14. <th><div align="center"> Nama </div></th>
  15. <th><div align="center"> Gaji </div></th>
  16. <th><div align="center"> Potongan </div></th>
  17. <th><div align="center"> Total Gaji </div></th>
  18. <th><div align="center"> Opsi </div></th>
  19. </tr>
  20.  
  21. <?php
  22. include"koneksi.php";
  23. $sql=mysql_query("select * from data_pegawai");
  24. $no=1;
  25. while($row=mysql_fetch_array($sql)){
  26. $total_gaji=$row["gaji"]-$row["potongan"];
  27.  
  28. ?>
  29.  
  30. <tr>
  31. <td><div align="center"><?php echo "$no"; ?> </div></td>
  32. <td> <div align="center"><?php echo "$row[tgl]"; ?> <div></td>
  33. <td><div align="center"><?php echo "$row[nip]"; ?><div></td>
  34. <td><div align="center"><?php echo "$row[nama]"; ?><div></td>
  35. <td><div align="center"><?php echo "$row[gaji]"; ?><div></td>
  36. <td><div align="center"><?php echo "$row[potongan]"; ?><div></td>
  37. <td><div align="center"><?php echo "$total_gaji"; ?><div></td>
  38. <td><div align="center"> <a href="index.php?hal=edit&nip=<?php echo"$row[nip]";?>" class="btn btn-danger"> Edit
  39. <a href="delete.php?nip=<?php echo"$row[nip]";?>" class="btn btn-danger"> Hapus <div></td>
  40. </tr>
  41.  
  42. <?php
  43. $no++;
  44. }
  45. ?>
  46.  
  47.  
  48. </table>
  49. </div>
  50. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement