-4
SELECT * FROM posts ORDER BY `posts`.`postid` DESC WHERE postid < ".$_POST['last_video_id']." LIMIT 8 ;
Suraj Rao
  • 29,388
  • 11
  • 94
  • 103

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
  • 201,996
  • 37
  • 293
  • 362