Hello everyone, I'm newbie and I need some helpful for my problem:
class pages {
var $total_pages = NULL;
var $scroll_pages = NULL;
...
function page_link (...) {
if ($this -> total_pages <= $this -> scroll_pages) {
...
}
}
}
Sorry I don't understand the code above and It's very long, so I don't write full code. But my problem is focus on this line:
if ($this -> total_pages <= $this -> scroll_pages) {
I don't understand the meaning of this line, can everybody help me ???
Thank in advandce to everybody.