Advertisement
Guest User

Untitled

a guest
May 27th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. $result = mysqli_query($conn, "SELECT * FROM fokke_login");
  2.  
  3. // laat alle collommen zien
  4. //$result = mysqli_query($conn, "SHOW COLUMNS FROM fokke_login");
  5.  
  6. // zorgt voor dat de tabellen te zien zijn
  7. if (mysqli_num_rows($result) > 0)
  8. {
  9. while ($row = mysqli_fetch_assoc($result))
  10. {
  11. print_r($row);
  12. echo "<br>";
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement