Advertisement
CHaNStar

db9

Oct 16th, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.17 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.             </tr>
  38.         </thead>
  39.        
  40.         <tbody>
  41.             <?php
  42.                 $i = 1;
  43.                 while ($siswa = $listSiswa->fetch_array()) {
  44.             ?>
  45.             <tr>
  46.             <td><?= $i++ ?></td>
  47.             <td><?= $siswa['nis'] ?></td>
  48.             <td><?= $siswa['nama_lengkap'] ?></td>
  49.             <td><?= $siswa['jenis_kelamin'] ?></td>
  50.             <td><?= $siswa['kelas'] ?></td>
  51.             <td><?= $siswa['jurusan'] ?></td>
  52.             <td><?= $siswa['alamat'] ?></td>
  53.             <td><?= $siswa['golongan_darah'] ?></td>
  54.             <td><?= $siswa['nama_ibukandung'] ?></td>                      
  55.         </tr>
  56.         <?php } ?>
  57.     </tbody>   
  58.     </table>   
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement