-4
SELECT * FROM posts ORDER BY `posts`.`postid` DESC WHERE postid < ".$_POST['last_video_id']." LIMIT 8 ;
Suraj Rao
  • 28,850
  • 10
  • 94
  • 99

1 Answers1

1

You have to put the conditions in your query in the correct order

SELECT * 
FROM posts 
WHERE postid < ?
ORDER BY postid DESC 
LIMIT 8

And you should use prepared statements that savely fill the parameters in your query.

juergen d
  • 195,137
  • 36
  • 275
  • 343