Home » CodeIgniter

Hi friends, This post explains about codeigniter plugin development for multi-language support using google translate API. This is  my own contribution in Codeigniter framework. With using google translate API it is developed. The procedure and how to implement in our application is in below github link. Readme.txt will give complete procedure to...

 

In this post i would like to explain about how to create thumbnail images in codeigniter framework. In the following function will give the clear understand about the code. Create Thumbnail Function 1234567891011function _createThumbnail($fileName) { $config['image_library'] = 'gd2'; $config['source_image'] = 'uploads/'...
Filed in: CodeIgniter

 

In this i would like to explain about how to set the pagination in codeigniter framework. See the code below: to set the pagination in CodeIgniter   In the controller: add the below code 12345678910 $this->load->library('pagination');  $config['total_rows'] = $this->db->count_all('code_image');  $config['per_page']...
Filed in: CodeIgniter

 

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’,...
Filed in: CodeIgniter

 

in the file at : application\config\database.php. we have to configured the database connection. $db['default']['hostname'] = “”; // Host Name $db['default']['username'] = “”; // User Name $db['default']['password'] = “”; // Password $db['default']['database'] = “”; // Database Name $db['default']['dbdriver']...