i want to connect my external css into the page. the css placed on C:\wamp\www\QBCI\Style\syle.css and i am using autoload helper $autoload['helper'] = array("html","form","url");
so, i write the css connector like this <link href="<?php echo base_url(); ?>Style/style.css" type="text/css" rel="stylesheet" /> and now here is the view
<html>
<head>
<link href="<?php echo base_url(); ?>style/style.css" type="text/css"
rel="stylesheet" />
</head>
<body>
<div class ="header">
http://localhost/QBCI/ //i was echoing base_url()
</div>
<div class ="content">
</div>
</body>
and finally, here is my base url at config.php
$config['base_url'] = 'http://localhost/QBCI';

why is the style.css is not loaded ? what did i do wrong ?
solved, i made the css file "syle.css" instead of "style.css" sorry guys, thank you for your support
base_url()?http://localhost/QBCI/