Advertisement
Guest User

Untitled

a guest
Feb 8th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $mysqli = new mysqli("localhost", "username", "password", "database");
  2.  
  3.  
  4. $sql = "show tables";
  5. $statement = $mysqli->prepare($sql);
  6. $statement->execute();
  7.  
  8. $result = $statement->get_result();
  9.  
  10.  
  11. while($row = $result->fetch_assoc()) {
  12. $tmp[] = $row;
  13. }
  14.  
  15. for ($c = 0; $c < count($tmp); $c ++) {
  16. echo $tmp[$c]."<br>";
  17.  
  18. }
  19.  
  20. gives
  21.  
  22. Notice: Array to string conversion in /home/vhosts/blaue2.eu5.org/logo_ebui9.php on line 19
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement