CodeIgniter Forums
Message: Undefined property: Researchers::$researchers - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Message: Undefined property: Researchers::$researchers (/showthread.php?tid=45513)



Message: Undefined property: Researchers::$researchers - El Forum - 09-24-2011

[eluser]solid9[/eluser]
Hi guys

I have encountered an error below,

Quote:Severity: Notice
Message: Undefined property: Researchers::$researchers
Filename: controllers/researchers.php
Line Number: 32

controller,
Code:
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Researchers extends CI_Controller {

public function index()
{
  $this->load->model('researchers');
  $this->load->view('researchers');
}

    function ahe_page()
    {
  $this->load->view('ahe_page');
}

    function add_researcher()
    {
  $this->load->helper('date');


  $data = array(
   'prod_name' => $this->input->post('prod_name'),
   'phase' => $this->input->post('phase'),
   'description' => $this->input->post('description'),
   'main_url' => $this->input->post('main_url'),
   'donation_url' => $this->input->post('donation_url'),
   'last_update' => now(),
   'updated_by' => '',
  );

  
  $this->researchers->add_record($data);
}

/*
    function show_researchers()
    {
        $data['query'] = $this->researchers->show_record();
        $this->load->view('researchers', $data);
    }
*/

}

I hope someone will help me.

Thanks in advanced.