<?php
defined('BASEPATH') OR exit('No direct script access allowed');
//error_reporting(0);
$this->load->view('layouts/topmenu.php', $metaData);
//echo $emailid;
//exit;
?>
//I would like to display an HTML file here
<a href=""></a>
<?php $this->load->view('layouts/bottom'); ?>
<?php $this->load->view('layouts/footer'); ?>
I want to display a header and footer page with an html file in between them which is in a .html file.
How do I display the .html file in the PHP code ?