Advertisement
Guest User

test

a guest
Feb 18th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. include "connection.php";
  4.  
  5. $sql="select * from pengundi";
  6. $rs=mysqli_query($db,$sql);
  7.  
  8. while($rec=mysqli_fetch_array($rs)){
  9.  
  10. echo "Nama Pengundi : ".$rec['Nama'];
  11. echo "<br>";
  12. echo "No KP : ".$rec['noKP'];
  13. echo "<br>";
  14. echo "Alamat : ".$rec['Alamat'];
  15. echo "<hr>";
  16. }
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement