|
左栏显示test1,右栏显示test2
view中dashboard.php
</frameset>
<frameset cols="200,*">
<frame src="<?php echo site_url('report/navigation');?>">
<frame src="<?php echo site_url('report/content');?>" name="showframe">
<noframes>
<body>your brower not support framework.</body>
</noframes>
</frameset>
view中navigation.php中
test1
view中content.php中
test2
controller中report.php
public function view($slug)
{
$this->load->view('report/dashboard');
}
效果显示分了好几个栏,不懂,求解释。
多谢!
|
|