Welcome Guest, Not a member yet? Register   Sign In
A little help with my first app...
#1

[eluser]invision[/eluser]
I call it an app, but it's just going to be a basic guestbook Smile Something to get me started with CodeIgniter.

I'm hoping to retrieve records from my 'data' table in MySQL and ultimately display them in my view.

I've stumbled at the first hurdle though Sad Can someone explain where I've gone wrong?


Controller(guestbook.php):
Code:
<?php

class Guestbook extends Controller {

    function Guestbook()
    {
        parent::Controller();    
    }
    
    function index()
    {
      $data['cats'] = $this->Guestbook_model->getRecords();
      $this->load->vars($data);
      $this->load->view('guestbook');
    }
}

Model(guestbook.php):
Code:
<?php

class Guestbook_model extends Model {

    function Guestbook_model()
    {
        parent::Controller();    
    }
    
    function getRecords() {
          $Q = $this->db->get('data');
          if ($Q->num_rows() > 0){
            foreach ($Q->result_array() as $row){
              $data[$row['id']] = $row['title'];
            }
          }
          $Q->free_result();
          return $data;
    }

}

My error message is:

Code:
A PHP Error was encountered

Severity: Notice

Message: Undefined property: Guestbook::$Guestbook_model

Filename: controllers/guestbook.php

Line Number: 12


Many thanks for any pointers with this.

Hopefully I shouldn't have to come back too often.


Messages In This Thread
A little help with my first app... - by El Forum - 02-18-2010, 09:58 AM
A little help with my first app... - by El Forum - 02-18-2010, 10:20 AM
A little help with my first app... - by El Forum - 02-18-2010, 10:48 AM
A little help with my first app... - by El Forum - 02-18-2010, 10:51 AM
A little help with my first app... - by El Forum - 02-18-2010, 10:55 AM
A little help with my first app... - by El Forum - 02-18-2010, 11:04 AM
A little help with my first app... - by El Forum - 02-18-2010, 11:43 AM
A little help with my first app... - by El Forum - 02-20-2010, 02:14 PM
A little help with my first app... - by El Forum - 02-20-2010, 03:50 PM
A little help with my first app... - by El Forum - 02-21-2010, 12:45 AM
A little help with my first app... - by El Forum - 02-22-2010, 04:30 AM
A little help with my first app... - by El Forum - 02-22-2010, 09:56 AM



Theme © iAndrew 2016 - Forum software by © MyBB