方式一:
Controller的部分
public function index()
{
//確認權限
$this->myclass->is_power_check();
$data['man_top'] = $this->load->view('manage/man_top','', true);
$data['page_title'] = $this->config->item('bk_title');
$this->load->view('manage/main', $data);
}
View的部分
<?php echo $man_top;?>
方式二:
直接在View的部分下
<?php include("man_left.php")?>
方式三:
class Page extends Controller {
function index()
{
$data['page_title'] = 'Your title';
$this->load->view('header'); //1
$this->load->view('menu'); //2
$this->load->view('content', $data); //3
$this->load->view('footer'); //4
}
}
註:方式三會依順序載入,不適合使用table切版(中間插入),適合用Div切版(順序載入)
沒有留言:
張貼留言