Advertisement
Guest User

Untitled

a guest
Jul 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <?php
  2. include "koneksi.php";
  3. ?>
  4. <html>
  5. <head>
  6. <title>Tutorial Menampilkan Data Dari Database - Regina Adiba's Blog</title>
  7. </head>
  8. <body>
  9. <h2>Daftar User</h2>
  10. <table border="1">
  11. <tr>
  12. <th>No.</th>
  13. <th>Nama Lengkap</th>
  14. <th>Username</th>
  15. </tr>
  16. <?php
  17. $sql_tampil=mysql_query("SELECT * FROM user");
  18. $no=1;
  19. while ($row_tampil=mysql_fetch_assoc($sql_tampil)){
  20. echo "<tr>";
  21. echo "<td>$no</td>";
  22. echo "<td>$row_tampil[namalengkap]</td>";
  23. echo "<td>$row_tampil[username]</td>";
  24. echo "</tr>";
  25.  
  26. $no++;
  27. }
  28. ?>
  29. </table>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement