View Single Post
Old 04-18-2009, 04:44 AM   #11 (permalink)
allworknoplay
The Gregarious
 
allworknoplay's Avatar
 
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
allworknoplay is on a distinguished road
Default

Tanax, question about a piece of your code.....

What does it mean when you say "return false",
and you also say "return true", but what are you actually
returning?

Code:
public function checkLink($pagenr) {
            
            if($pagenr <= $this->totalPages && $pagenr >= 1) {
                
                return true;
                
            }
            
            return false;
            
        }
Thanks!!
allworknoplay is offline  
Reply With Quote