php - How to load css files, javascript files and images in codeigniter? -
my application structure is
application
assets
-css -images -js
system
1- load url helper in controller's constructor,
$this->load->helper('url');
2- use base url function load js, css files in view
<link rel="stylesheet" type="text/css" href="<?php echo base_url();?>css/style.css">
p.s: have put js, css files in root folders. (default)
Comments
Post a Comment