Guest User

Untitled

a guest
Jan 21st, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $db = mysqli_connect("127.0.0.1", "123", "123", "123");
  4. $posts = $db->query("SELECT * FROM matposts ORDER BY id DESC");
  5.  
  6. while ($row = $posts->fetch_assoc()) {
  7. echo $row["id"]." Title: ".$row["title"]." Text: ".$row["text"].'<br>';
  8.  
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment