|
楼主 |
发表于 2008-2-2 17:21:30
|
显示全部楼层
<?php
class Blog extends Controller {
function Blog()
{
parent::Controller();
//$this->load->scaffolding("entries");
//$this->load->database();
$this->load->helper('url');
$this->load->helper('form');
}
function index()
{
$data['title']="MyBlog";
$data['heading']="Blog Heading";
$data['todo']=array('clean house','eat lunch','call mother');
$data['query']=$this->db->get('entries');
$this->load->view('blog_view',$data);
}
function comments()
{
$data['title']="MyComments";
$data['heading']="Blog comments";
//$data['query']=$this->db->get('entries');
$this->load->view('comment_view',$data);
}
function comment_insert()
{
echo "good!";
}
}
?> |
|