I am using codeigniter 3.1. I am trying to read base_url from config file . However hardcode value is working fine for the same . my code to read base_url is :
<link rel="stylesheet" type="text/css" href='<?php echo base_url('assets/css/bootstrap.min.css'); ?>' />
<script src='<?php echo base_url('assets/js/bootstrap.min.js'); ?>' />
<link rel="stylesheet" type="text/css" href='<?php echo base_url('assests/css/styles.css'); ?>' />
My config is as follow :
$config['base_url'] = "http://localhost:63342/CI/";