Example #1
0
 function __construct()
 {
     $books = new Books_model();
     $this->_variables = $books->get_all();
     $this->_template = "index.html";
 }
Example #2
0
 function output()
 {
     $books = new Books_model();
     $this->_variables = $books->get_all();
     include $this->_template;
 }