This is my query:
$result = mysql_query("SELECT * FROM Posts WHERE MATCH (City) AGAINST ('$city') ORDER by Date DESC LIMIT 10");
Basically I want to skip the first 10 results and only select result N: $page * 10 to show the results that correspond to that page. How can I do this?
You’re looking for the OFFSET keyword