Guest User

Untitled

a guest
Jun 24th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $sql = "select id, title from posts where id in (369,378,363)";
  2.  
  3. $st = $db->prepare($sql);
  4.  
  5. $st->execute();
  6.  
  7. $items = "";
  8.  
  9. while ($row = $st->fetch()){
  10. $items .= "<div class='linkedsingleup' data-id = " . $row['id'] . ">" . $row['title'] . "</div>nn";
  11. }
  12.  
  13. echo $items;
Add Comment
Please, Sign In to add comment