Welcome Guest, Not a member yet? Register   Sign In
can't even get thru tutorial without errors
#23

[eluser]swgj19[/eluser]
I am working on the same old video tutorials, please help me with my errors. There are two errors. Please use specific examples as I am new to PHP and frameworks. I will not give up though.


A PHP Error was encountered

Severity: Notice

Message: Undefined property: Site::$db

Filename: core/Model.php

Line Number: 50

Fatal error: Call to a member function get() on a non-object in C:\xampp\htdocs
\ci\application\models\site_model.php on line 6



Now, here is my model, view, and controller pages.


Model(site_model.php):

<?php

class Site_model extends CI_Model {

function getAll() { //can name method whatever
$q = $this->db->get('test'); //grab table name:test from database name: ci_series

if($q->num_rows() > 0) { //If # of rows return are > than 0, then do whats next.
foreach ($q->result() as $row)
{
$data[] = $row; //by setting $data as an array, we have a new instance in the data array.
}
return $data;
}
}

}

?>


View(home.php):

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Untitled Document&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;

&lt;/head&gt;

&lt;body&gt;
<div id="container">
<p>My view has been loaded</p>

&lt;?php foreach($records as $row) : ?&gt;
<h1>&lt;?php echo $row->username; ?&gt;</h1>
&lt;?php endforeach; ?&gt;

</div>

&lt;/body&gt;
&lt;/html&gt;


Controller(site.php):

&lt;?php

class Site extends CI_Controller {

function index() {

$this->load->model('site_model'); //This is where model is loaded, but nothing done with the model yet.
$data['records'] = $this->site_model->getAll();
$this->load->view('home', $data);

}
}
?&gt;


Messages In This Thread
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 02:49 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 02:50 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 02:56 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:00 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:03 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:12 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:13 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:19 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:22 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:28 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:31 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:33 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 03:48 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 04:06 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:16 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:22 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:27 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:30 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:35 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:39 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:46 PM
can't even get thru tutorial without errors - by El Forum - 01-15-2011, 07:49 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 11:21 AM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 11:49 AM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 12:01 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 12:37 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 12:54 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 01:14 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 08:12 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 08:34 PM
can't even get thru tutorial without errors - by El Forum - 02-09-2011, 08:57 PM
can't even get thru tutorial without errors - by El Forum - 02-10-2011, 12:33 AM
can't even get thru tutorial without errors - by El Forum - 02-10-2011, 08:16 AM
can't even get thru tutorial without errors - by El Forum - 02-10-2011, 10:59 PM
can't even get thru tutorial without errors - by El Forum - 10-21-2012, 08:34 PM



Theme © iAndrew 2016 - Forum software by © MyBB