I'm totally clueless on MYSQL. I current have the following SELECT code: $aa_query = "SELECT `id`, `title`, `seftitle`, `date` FROM `articles` WHERE `id`<".$r['id']." AND `category`=".$r['category']." ORDER BY `date` DESC LIMIT 5"; Which is selecting the 5th most recent by date articles by date. What code would i need to be able to select the 5th to 10th most recent articles only. Thanks.
try: $aa_query = "SELECT `id`, `title`, `seftitle`, `date` FROM `articles` WHERE `id`<".$r['id']." AND `category`=".$r['category']." ORDER BY `date` DESC LIMIT 5,5";