0

hey am working with codeigniter pagination here is my pagination controller code i searched on google but it looks fine but its showing an syntax error some thing like Parse error: syntax error, unexpected '->' (T_OBJECT_OPERATOR), expecting ']' in C:\xampp\htdocs\hd\application\controllers\admin\customer.php on line 17

and here is my controller code:

$this->load->library('pagination');

     $config = [
              'base_url' => base_url('admin/customer'),
              'per_page' => 5,
              'total_rows' => $this->admin/customer_model->num_rows(),
               ];

$this->pagination->initialize($config);

and its showing me error on this line 'total_rows' => $this->admin/customer_model->num_rows(),

0 Answers0