How to load multiple views to mpdf How to load multiple views to mpdf codeigniter codeigniter

How to load multiple views to mpdf


Just prefetch the header and footer templates into variables and pass their parsed strings to the main view ,like this:

$data['header'] = $this->load->view('common/default_header',$this->params, true);$data['footer'] = $this->load->view('common/default_footer', true);$html = $this->load->view('reservation/complete', $data, true); 

Notice the third parameter to true so that you get the view in a string instead of sending it to output (most commonly the client's browser).

Then in your main template, place the $header and $footer variables wherever you need.