Hello, I'm getting a error : Trying to get property of non-object. Currently using CodeIgniter php framework.
Controller:
public function index() {
$this->load->model('data_model');
$data['rows'] = $this->data_model->getAll();
$this->load->view('index',$data);
}
Views:
<?php foreach($rows as $r) : ?>
<h1><?php echo $r->title; ?></h1> //Error on this line
<div><?php echo $r->contents; ?></div> //Error on this line
<?php endforeach; ?>
Thanks You.