04-18-2009, 04:44 AM
|
#11 (permalink)
|
|
The Gregarious
Join Date: Feb 2009
Location: New York
Posts: 645
Thanks: 64
|
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!!
|
|
|
|