17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1110 Views |
-
Move through page siblings

7 August 2008 at 4:02pm
Hello everyone,
just working away on a site and it has controls for the user to move forward and back throgh the page siblings. I took a look at the sibling control posted in the doku but that will list all siblings.
Is there any way to identify the current page and using that as the offset? This could allow for the query to be limited to 1 and the offset set to pickup the next/previous page only.
cheers.
-
Re: Move through page siblings

7 August 2008 at 4:20pm
Ok, probably the best thing to do is count the rows up until the item ID then use that as the offset. Right?
$sqlQuery = new SQLQuery(
"COUNT(ItemName.ID)",
"ItemName WHERE ItemName.ID < ".$this->ID.""
);echo $sqlQuery->execute()->value();
| 1110 Views | ||
|
Page:
1
|
Go to Top |

