Loading multiple views using codeigniter php

后端 未结 2 803
忘掉有多难
忘掉有多难 2021-01-16 04:54

I have 4 pages in view such as

layout/header.php,
layout/header_assets.php,
user/main.php,
layout/footer.php

i want to load these multiple

2条回答
  •  盖世英雄少女心
    2021-01-16 05:51

    For your Question

    In Controller

    $this->load->view('layout/header_assets',$data); # Change
    $this->load->view('user/main',$data);
    $this->load->view('layout/footer');
    

    Best option is

    A file should contain 3 part.

    1. Header
    2. Body
    3. Footer.

    In Header

    There is only contain

    1. Meta Tags
    2. All CSS and JS

          
      
          ....
          ....
          
      
                                       
                    
提交回复
热议问题