The simpler media website CMS
<?php $counterloop2 = 0;<br />
while (next_album()){ ?>
<?php if ($counterloop2==2) {break;}<br />
$counterloop2++; }
?>
`
The displayed results in the second loop seem to miss the results from the first loop. Is there a way to reset the query, so that i can start the second loop with the first entry again?
Comments
You will have to implement this using the object model instead. Alternatively you could save and restore the context, but to do that you will have to figure out all of what needs to be saved by understanding the workings of the `next_album()` loop itself.