I am trying to use:
href=<?php echo base_url('contactus.php');?>
where contactus.php
is a file under views and I have loaded helper url
under autoload. Please help me with correct syntax.
Also, I have loaded the file in controller but it is still not working. My controller looks like this:
<?php
class Home extends CI_Controller
{
function index()
{
$this->load->view('homeview');
}
function contact()
{
$this->load->view('contactus');
}
}
?>