<?php
class Blog extends CI_Controller{
function __construct(){
parent::__construct();
}
function index(){
$data['content'] = '我就是我张国荣!';
$this->load->view('header');
$this->load->view('menu');
$this->load->view('content',$data);
$this->load->view('footer');
}
function comments(){
echo "Oh mygod you are here!";
}
}
?>