View Single Post
  #4 (permalink)  
Old 11-16-09, 06:53 PM
Jcbones Jcbones is offline
Aspiring Coder
 
Join Date: Mar 2009
Location: North Carolina, USA
Posts: 516
Thanks: 5
Thanked 47 Times in 44 Posts
PHP Code:

//if $eu is set, and the value is more than 0, $count = $eu + 1, else $eu = 1;
$count = (isset($eu) && $eu 0) ? $eu+1
I thought that might be the case, since we are calling the count to start off of your first limit call, and the first number in the limit will always be one number behind. Since MySQL count start with 0.
Reply With Quote
The Following User Says Thank You to Jcbones For This Useful Post:
triplebig (11-19-09)