Я новичок в codeigniter, и я застрял, пытаясь выяснить, что идет не так в этой строке
вот мой контроллер
class Product extends CI_Controller{
function index(){
$this->load->model('product_model');
$data['products'] = $this->product_model->get_all_products();
$this->load->view('all_products', $data);
}
}
вот моя модель
class Product_model extends CI_Model {
function get_all_products(){
$query = $this->db->get('products');
if($query->num_rows() > 0){
foreach($query->result() as $row){
$data[] = $row;
}
return $data;
}
}
}
и вот моя ошибка
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Product::$db
Filename: core/Model.php
Line Number: 50
Fatal error: Call to a member function get() on a non-object in /Users/matt/Sites/ci/application/models/product_model.php on line 9el.php on line 6
ошибка в этой строке
$query = $this->db->get('products');
почему он не работает, документация codeigniter описывает это так ... у меня есть таблица продуктов также