[eluser]marine[/eluser]
Thank you for your response. But it's not really that.
I explain more :
in my file application/config/config.php I have some language variable :
/* default language */
$config['language'] = "french";
/* default language abbreviation */
$config['language_abbr'] = "fr";
/* set available language abbreviations */
$config['lang_uri_abbr'] = array("en" => "english", "fr" => "french");
/* hide the language segment (use cookie) */
$config['lang_ignore'] = FALSE;
I want stock my language information in database for edit and add language from back office.
So, when I edit or add an information language, I need see this language in $config['lang_uri_abbr'].
So I want define $config['lang_uri_abbr'] in config.php with database information.
But if I use $ci = &get;_instance() it's doesn't work...
So I don't know how access database from config.php.
Are you understand?
Thanks again for your help! :-)