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

Popular posts from this blog

c++ - list<myClass<int> * > sort -

sql server - database first change primary key from int to uniqueidentifier -