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
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.
In Header
There is only contain
All CSS and JS
.... ....