Advertisement
urutehe1

listview

Jul 30th, 2019
1,713
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. <?php
  2. include 'koneksi.php';
  3. ?>
  4.  
  5. <table border="1"><h4>MAHASISWA</h4><button><a href="create.php">Tambah</a></button>
  6. <tr><th>NO</th><th>NIM</th><th>NAMA</th><th>JENIS KELAMIN</th><th>TANGGAL LAHIR</th></tr>
  7.  
  8.  
  9. <?php
  10. $query = "select * from mahasiswa";
  11. $result = mysqli_query($connect, $query);
  12. $no = 1;
  13.  
  14. while ($list = mysqli_fetch_array($result))
  15. {
  16.     echo "<tr>"
  17.     ,"<td>$no</td>"
  18.     ,"<td>$list[nim]</td>"
  19.     ,"<td>", strtoupper($list['nama']),"</td>"
  20.     ,"<td>", strtoupper($list['jenis_kelamin']),"</td>"
  21.     ,"<td>$list[tanggal_lahir]</td></tr>";
  22.     $no++;
  23. }
  24. ?>
  25. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement