I have two functions in a class:
public function __construct()
{
$this->page=$this->Pagination_page();
}
function Pagination_page($page){
return $page;
}
This version is not working. How can I add to the $this->page the Pagination_Page value?