Advertisement
CHaNStar

30.1

Oct 23rd, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.33 KB | None | 0 0
  1. <html>
  2. <head>
  3.     <title>CHANDRA XI-RPL2</title>
  4.      <style type="text/css">
  5.   body{
  6.  font-family: 'Chilanka', cursive;
  7.  color: white;
  8. }
  9. table{
  10.  background-color: lightblue;
  11.  color: white;
  12.  border-color: white;
  13. }
  14. a{
  15.  background: lightblue;
  16.  font-family: 'Chilanka', cursive;
  17.  color: white;
  18.  text-decoration: none;
  19. }
  20.  
  21.  </style>
  22. </head>
  23. <body>
  24.     <a href="tambah.php">Tambah Data</a><br><br>
  25.     <table border="1" >
  26.         <thead>
  27.             <tr>
  28.                 <th>#</th>
  29.                 <th>NIS</th>
  30.                 <th>Nama</th>
  31.                 <th>Jenis Kelamin</th>
  32.                 <th>Kelas</th>
  33.                 <th>Jurusan</th>
  34.                 <th>Alamat</th>
  35.                 <th>GolonganDarah</th>
  36.                 <th>NamaIbuKandung</th>
  37.                 <th colspan="2">Aksi</th>
  38.             </tr>
  39.         </thead>
  40.        
  41.         <tbody>
  42.             <?php
  43.                 $i = 1;
  44.                 while ($siswa = $listSiswa->fetch_array()) {
  45.             ?>
  46.             <tr>
  47.             <td><?= $i++ ?></td>
  48.             <td><?= $siswa['nis'] ?></td>
  49.             <td><?= $siswa['nama_lengkap'] ?></td> 
  50.             <td><?= $siswa['jenis_kelamin'] ?></td>
  51.             <td><?= $siswa['kelas'] ?></td>
  52.             <td><?= $siswa['jurusan'] ?></td>
  53.             <td><?= $siswa['alamat'] ?></td>
  54.             <td><?= $siswa['golongan_darah'] ?></td>
  55.             <td><?= $siswa['nama_ibukandung'] ?></td>
  56.             <td><a href="edit.php?nis=<?= $siswa['nis'] ?>">edit</a></td>
  57.             <td><a href="delete.php?nis=<?= $siswa['nis'] ?>">delete</a></td>                      
  58.         </tr>
  59.         <?php } ?>
  60.     </tbody>   
  61.     </table>   
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement