How can I set the range of rows to display on an array?
For example, I have a query with 20 results.
I want page 1 to display rows 1-10 .
I want page 2 to display rows 11-20.
Orginially I set this up just using a LIMIT and OFFSET, however that does not work with my ranking field (it would set the first rank of the second page back to 1 rather than its proper rank, and since ties can happen I couldn't just use the value prior to it, as 7, 8, 9, and 10 could all really be rank 7, and if 11 has the same score as 7-10 it too should be rank 7, not 11)
this is what i have so far:
$max_results = 10;
$cur_page = 1
$query3 = "SET @rank = 0, @prev_rank = -1, @rownum = 0";
$result3=mysql_query($query3);
$query = "SELECT *,@rownum := @rownum + 1 AS row,
@rank := if (@prev_rank<>Score, @rownum,@rank) AS ranking,
@prev_rank:= Score AS score
FROM blah blah blah"
$result = mysql_query($query)
while ($row = mysql_fetch_assoc($result)) {
echo "".$row['ranking']."";
}
Thanks for the help!
-Ryan
edit--I believe there are two solutions to this which both I can not figure out---
1: Find a way to find query the rows prior to the starting row
2: Find a way to display a set range of rows from the query.