예제 #1
0
파일: index.php 프로젝트: Dmytriiev/custom
 function __construct()
 {
     $books = new Books_model();
     $this->_variables = $books->get_all();
     $this->_template = "index.html";
 }
예제 #2
0
파일: index.php 프로젝트: skvak/custom
 function output()
 {
     $books = new Books_model();
     $this->_variables = $books->get_all();
     include $this->_template;
 }