How to Deal With Codeigniter Templates?

前端 未结 12 1820
梦谈多话
梦谈多话 2020-12-08 01:02

I\'m fairly new to MVC, and I\'ve found CodeIgniter recently. I\'m still learning everyday, but one problem is its template engine. What is the best way to create templates

12条回答
  •  时光说笑
    2020-12-08 01:39

    Make a library that includes all your views and send it data that you need to send to your content view. This is all!

    load->view('preheader_view',$data);
            $CI->load->view('header_view');
            $CI->load->view('top_navigation_view');
            $CI->load->view($name.'_view',$data);
            $CI->load->view('leftblock_view',$data);
            $CI->load->view('rightblock_view',$data);
            $CI->load->view('footer_view');        
        }
    }
    

提交回复
热议问题