Advertisement
CHaNStar

db6

Oct 16th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  <title>CHANDRA XI-RPL 2</title>
  5.  <style type="text/css">
  6.   body{
  7.  font-family: 'Chilanka', cursive;
  8.  color: white;
  9. }
  10. table{
  11.  background-color: lightblue;
  12.  color: white;
  13.  border-color: white;
  14.  margin-top: 100px;
  15. }
  16. a{
  17.  background: lightblue;
  18.  font-family: 'Chilanka', cursive;
  19.  color: white;
  20.  text-decoration: none;
  21. }
  22.  
  23.  </style>
  24. </head>
  25. <body>
  26.  
  27.  <table border="1" align="center" cellpadding="5" cellspacing="2">
  28.   <thead>
  29.    <th>#</th>
  30.    <th>NIS</th>
  31.    <th>Nama Lengkap</th>
  32.    <th>Jenis Kelamin</th>
  33.    <th>Kelas</th>
  34.    <th>Jurusan</th>
  35.   </thead>
  36.  
  37.   <tbody>
  38.    <?php
  39.    $i = 1;
  40.    while ($siswa = $listSiswa->fetch_array()) {
  41.     ?>
  42. <tr>
  43.      <td><?= $i++ ?></td>
  44.      <td><?= $siswa['nis'] ?></td>
  45.      <td><?= $siswa['nama_lengkap'] ?></td>
  46.      <td><?= $siswa['jenis_kelamin'] ?></td>
  47.      <td><?= $siswa['kelas'] ?></td>
  48.      <td><?= $siswa['jurusan'] ?></td>
  49.     </tr>
  50. <?php } ?>
  51.   </tbody>
  52.  
  53.  </table>
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement