Home » CodeIgniter »

0

See the code:

In the application\config\ in that folder we have list of files., in that we have to modify the file is config.php


$config['base_url'] = “http://localhost/CodeIgniter/”;


and helpers :

appication \ config\ autoload.php file we have to modify.


$autoload['libraries'] = array();
to
$autoload['libraries'] = array(‘database’, ‘session’);

$autoload['helper'] = array(‘form’, ‘url’);


Hope that it will be useful …


Related Posts

    How to write SEO friendly urls in CodeIgniterHow to create database connection using codegniter?Create thumbnail images in codeIgniterWhat is CodeIgniter,how to install in local system?

 

Leave a Reply