Advertisement
Guest User

Untitled

a guest
May 29th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2. include '../dbconnect.php';
  3.  
  4.  
  5. $res = $conn->query("SELECT id FROM messages ORDER BY RAND() LIMIT 10");
  6. while($row=$res->fetch_array())
  7. {
  8.  
  9. echo $row['id'] . "<br>";
  10.  
  11. }
  12.  
  13.  
  14. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement