forkc 发表于 2013-2-26 16:20:38

左右分栏问题待解决

左栏显示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');
    }

效果显示分了好几个栏,不懂,求解释。
多谢!
页: [1]
查看完整版本: 左右分栏问题待解决