Your Ad Here

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 …


You may like these posts

    Create thumbnail images in codeIgniterHow to set the pagination in CodeIgniter?Codeigniter multi language support using google translate APIHow to create database connection using codegniter?

 

Leave a Reply