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