I am developing an application on Codeigniter and mysql with swedish language. I am using utf8_general_ci Collation for the column which stores names in swedish characters.
In database.php in config directory of CodeIgniter setting are as follow
$db['default']['char_set'] = 'utf8';
$db['default']['dbcollat'] = 'utf8_general_ci';
Now when I save a string containing å (for example qwertåpoiutt). String after å is discarded and save in database before å (save only qwert).
at the same time if I run that query in phpmyadmin then entire string is stored.
Where am I wrong?