I am using following code to load my css file in my codeigniter website.
<link rel="stylesheet" type="text/css" href="<?php $base_url?><?php $css?>style.css" />
In my config.php
I have used this code.
$config['base_url'] = 'http://localhost/mysite';
$config['css'] = "/assets/css/";
But css is not loading.
What I am doing wrong?
Try
<link rel="stylesheet" type="text/css" href="<?php echo $base_url; ?><?php echo $css; ?>style.css" />