Hey guys, I was just working on another feature that I wanted to be implemented and thought I would share. Add the red text to "libs\html1.php" between the blue lines to show the currently viewed article numbers. Example: "Showing 1-10 of 17" or "Showing 2-17 of 17". Enjoy!
my pligg site: http://strandalo.us......
echo '<div class="pagination"><p>';
$from=$current*10-9;
if($total<$current*10) {
$to=$total;
}
else {
$to=$current*10;
}
echo '<b><h3>Showing '.$from.'-'.$to.' of '.$total.'</h3></b><br>';
if($current==1) {
.......



Reply With Quote






