My default controller is index.php so when i call from it my view its working fine... then i call the following views but it prints text instead of html
<?=$this->load->view('header'); ?>
<?=$this->load->view("index/left_side"); ?>
<?=$this->load->view("index/right_side"); ?>
<?=$this->load->view('footer'); ?>
i am using WAMP on Windows 7.
Does it have anything to do that i use <?= instead of <?php ?
SOLUTION: i enabled short tags and asp tags and its working now.