Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.58 KB | None | 0 0
  1. <style type="text/css">
  2.     table{
  3.         border: 2px solid red;
  4.         background-color: yellow;
  5.     }
  6.     td{
  7.         text-align: center;
  8.     }
  9.     a{
  10.         text-decoration: none;
  11.         color: purple ;
  12.     }
  13.     a:hover{
  14.         color: cyan;
  15.         background-color: lightgray;
  16.     }
  17.     .action{
  18.         background-color: skyblue;
  19.         border:2px solid blue;
  20.         width: 90px;
  21.         height: 100%;
  22.     }
  23.     .link{
  24.         background-color: red;
  25.     }
  26. </style>
  27.  
  28.  
  29. <table border="1">
  30.     <thead>
  31.         <tr class="link">
  32.             <td class="link">
  33.                 <a href="tambah.php">
  34.                 <div class="action">
  35.                     Tambah Data
  36.                 </div>
  37.                 </a>
  38.             </td>
  39.             <td colspan="8">
  40.                 Data Siswa SMKN 4 Bandung
  41.             </td>
  42.             <td rowspan="2">
  43.                 Aksi
  44.             </td>
  45.         </tr>
  46.         <tr>
  47.             <th>#</th>
  48.             <th>Nis</th>
  49.             <th>Nama Lengkap</th>
  50.             <th>Jenis Kelamin</th>
  51.             <th>Kelas</th>
  52.             <th>Jurusan</th>
  53.             <th>Alamat</th>
  54.             <th>Nama Ibu</th>
  55.             <th>Golongan Darah</th>
  56.         </tr>
  57.     </thead>
  58.  
  59.     <tbody>
  60.         <?php
  61.             $i = 1;
  62.             while ($siswa = $listsiswa ->fetch_array()) {
  63.               ?>
  64.               <tr>
  65.                 <td><?= $i++ ?></td>
  66.                 <td><?= $siswa['nis'] ?></td>
  67.                 <td><?= $siswa['nama_lengkap'] ?></td>
  68.                 <td><?= $siswa['jenis_kelamin'] ?></td>
  69.                 <td><?= $siswa['kelas'] ?></td>
  70.                 <td><?= $siswa['jurusan'] ?></td>
  71.                 <td><?= $siswa['alamat'] ?></td>
  72.                 <td><?= $siswa['nama_ibu_kandung'] ?></td>
  73.                 <td><?= $siswa['golongan_darah'] ?></td>
  74.                 <td><a href="edit.php?nis=<?= $siswa['nis'] ?>"><div class="action">Edit</div></a>
  75.                 <a href="delete.php?nis=<?= $siswa['nis'] ?>"><div class="action">hapus</div></a></td>
  76.               </tr>
  77.             <?php } ?>
  78.     </tbody>
  79. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement