Advertisement
fwprabowo

Untitled

Oct 20th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. include "config.php";
  3.  
  4. $data=array();
  5.  
  6. $cek_kode=mysqli_query($konek, "select content_title, input_date, content_desc from content where is_news = 1");
  7.  
  8. $cek=mysqli_num_rows($cek_kode);
  9. if ($cek_kode==0){
  10. echo "Tidak ada koleksi";
  11. }
  12. else
  13. {
  14. while ($hasil=mysqli_fetch_array($cek_kode, MYSQLI_ASSOC))
  15. {
  16. $row=[];
  17. foreach($hasil as $nm=>$val) $row[$nm]= trim($val);
  18. $data[]=$row;
  19.  
  20. }
  21. die(json_encode($data));
  22. }
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement