I have to connect database from my domain example (www.test.com) to other project on localhost xampp thought codeigniter platform.
I have tried below code in aplication/config/database.php
Note: I have not mentioned exact host name, database, username & password for security reasons.
$db['default'] = array(
'dsn' => '',
'hostname' => 'XXX.XX.XX.XXX:3306',
'username' => '****_cs_user',
'password' => '********',
'database' => '****_case_study',
'dbdriver' => 'mysqli',
'dbprefix' => '',
'pconnect' => FALSE,
'db_debug' => (ENVIRONMENT !== 'production'),
'cache_on' => FALSE,
'cachedir' => '',
'char_set' => 'utf8',
'dbcollat' => 'utf8_general_ci',
'swap_pre' => '',
'encrypt' => FALSE,
'compress' => FALSE,
'stricton' => FALSE,
'failover' => array(),
'save_queries' => TRUE
);