Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2.  
  3. include "koneksi.php";
  4.  
  5.  
  6.  
  7. $kategori=mysql_query("select * from kategori");
  8.  
  9.  
  10.  
  11. // looping untuk menampilkan nama kategori
  12.  
  13. while($k=mysql_fetch_array($kategori)){
  14.  
  15. echo "<h3>$k[nama_kategori]</h3>";
  16.  
  17.  
  18.  
  19. $berita=mysql_query("select * from kategori, berita
  20.  
  21. where kategori.id_kategori=berita.id_kategori
  22.  
  23. and berita.id_kategori='$k[id_kategori]'");
  24.  
  25.  
  26.  
  27. // looping untuk menampilkan judul berita
  28.  
  29. // yang berhubungan dengan kategori masing-masing
  30.  
  31. while($b=mysql_fetch_array($berita)){
  32.  
  33. echo "<li>$b[judul]</li>";
  34.  
  35. } // end while looping berita
  36.  
  37. } // end while looping kategori
  38.  
  39. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement