Welcome Guest, Not a member yet? Register   Sign In
Problems with CI, please HELP
#1

[eluser]cibill[/eluser]
well

this are my files and change i`ve been made:

---
autoload.php

for recognition of my database i`ve done this change

|
*/
$autoload['core'] = array('database');

------

My blog controller blog.php looks like this:

<?php

class Blog extends Controller {


function Blog()
{
parent::Controller();

$this->load->helper('url');
$this->load->helper('form');
}

function index()
{
$data['title'] = "My Blog Title";
$data['heading'] = "My Blog Heading";
$data['query'] = $this->db->get('entries');

$this->load->view('blog_view', $data);
}
}

?>


-----


And my blog_view.php file looks like this:


<html>
<head>
<title><?=$title?></title>
</head>
<body>
<h1>&lt;?=$heading?&gt;</h1>



&lt;?php foreach($query->result() as $row): ?&gt;

<h3>&lt;?=$row->title?&gt;</h3>
<p>&lt;?=$row->body?&gt;</p>

<p>&lt;?=ancor('blog/comments', 'Comments');?&gt;</p>

<hr />

&lt;?php endforeach; ?&gt;


&lt;/body&gt;

&lt;/html&gt;

------


well and the browser is showing me this Error Mesage:


A PHP Error was encountered

Severity: Notice

Message: Undefined property: Blog::$db

Filename: controllers/blog.php

Line Number: 18


------


QUESTION: where is the problem (i know line 18 blog.php), i did exactly the same thing like in video tutorial, maybe i`ve done wrong the cofig files, or what?!

can anyone help me

I have problems also with the links when i`m using the scaffolding, but this is another story...


best regards


Messages In This Thread
Problems with CI, please HELP - by El Forum - 10-25-2007, 04:46 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 05:33 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 05:37 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 05:55 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 06:00 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 06:21 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 06:25 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 06:30 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 06:39 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 07:07 AM
Problems with CI, please HELP - by El Forum - 10-25-2007, 01:14 PM
Problems with CI, please HELP - by El Forum - 10-26-2007, 06:31 AM
Problems with CI, please HELP - by El Forum - 10-26-2007, 06:36 AM
Problems with CI, please HELP - by El Forum - 01-02-2008, 08:17 PM



Theme © iAndrew 2016 - Forum software by © MyBB