Welcome Guest, Not a member yet? Register   Sign In
site_model error
#11

[eluser]davy_yg[/eluser]

controllers/admin/site.php

Code:
<?php

class Site extends CI_Controller
{
function index()
{
  $data = array();
  
  $records = $this->site_model->get_records();
  if (count($records) > 0)
  {
   $data['records'] = $query;
  }
  
  $this->load->view('options_view', $data);
}

function create()
{
  $data = array(
   'title' => $this->input->post('title'),
   'content' => $this->input->post('content')
  );
  
  $this->site_model->add_record($data);
  $this->index();
}
}

models/Site_model.php

Code:
<?php

class Site_model extends CI_Model {

function get_records()
{
  $query = $this->db->get('data');
  return $query->result();
}

function add_record($data)
{
  $this->db->insert('data', $data);
  return;
}

function update_record($data)
{
  $this->db->where('id', 14);
  $this->db->update('data', $data);
}

function delete_row()
{
  $this->db->where('id', $this->uri->segment(3));
  $this->db->delete('data');
}

}


A PHP Error was encountered

Severity: Notice

Message: Undefined property: Site::$site_model

Filename: admin/site.php

Line Number: 10

Fatal error: Call to a member function get_records() on a non-object in C:\xampp\htdocs\IndonusaCI\application\controllers\admin\site.php on line 10

That's the error.


Messages In This Thread
site_model error - by El Forum - 11-09-2013, 10:41 PM
site_model error - by El Forum - 11-10-2013, 05:10 AM
site_model error - by El Forum - 11-10-2013, 08:09 PM
site_model error - by El Forum - 11-10-2013, 08:50 PM
site_model error - by El Forum - 11-10-2013, 09:06 PM
site_model error - by El Forum - 11-10-2013, 09:09 PM
site_model error - by El Forum - 11-10-2013, 09:19 PM
site_model error - by El Forum - 11-11-2013, 08:11 AM
site_model error - by El Forum - 11-11-2013, 07:03 PM
site_model error - by El Forum - 11-11-2013, 07:06 PM
site_model error - by El Forum - 11-11-2013, 07:31 PM
site_model error - by El Forum - 11-11-2013, 07:42 PM
site_model error - by El Forum - 11-12-2013, 01:25 AM
site_model error - by El Forum - 11-12-2013, 03:18 AM
site_model error - by El Forum - 11-12-2013, 03:26 AM
site_model error - by El Forum - 11-12-2013, 03:36 AM
site_model error - by El Forum - 11-12-2013, 03:47 AM
site_model error - by El Forum - 11-12-2013, 04:06 AM
site_model error - by El Forum - 11-12-2013, 09:32 PM
site_model error - by El Forum - 11-13-2013, 03:18 AM
site_model error - by El Forum - 11-13-2013, 03:20 AM
site_model error - by El Forum - 11-13-2013, 03:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB