|
版本1.7.1,按照视频制作
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
class Blog extends Controller {
function __construct()
{
parent::Controller();
//$this->load->scaffolding('blog');
}
function index()
{
$this->load->database();
$datas['title']="这是网站标题";
$datas['h1']="这是h1标题";
$datas['query']=$this->db->get('blog');
$this->load->view('blog_view',$datas);
}
}
?>
错误是:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: stdClass:content
Filename: views/blog_view.php
Line Number: 16 |
|