Advertisement
Eshkation-

Untitled

Aug 15th, 2016
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2. $connection = new mysqli("127.0.0.1", "root", "", "mydb"); // starts a new connection
  3. $result = $connection->query("SELECT * from `honk`"); // the query result
  4. while($column = $result->fetch_assoc()) { // for each row in the query
  5. print_r($column); // print the table
  6. }
  7. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement