I just set up new CI but css is not working and it is eating my code.
This is my only view, i looked in the source code and found code after <head>
is disappearing when i put the css link tag.
<! DOCTYPE html !>
<html>
<head>
<link href="<?php echo base_url(); ?>styles/style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="container">
<h1>Workforce</h1>
<?php
foreach($results as $r){
echo $r->name.'<br>';
}
?>
</div>
</body>
</html>