Welcome Guest, Not a member yet? Register   Sign In
No able to insert accentuated french word
#1

Hi there,
i have been trying to insert some french word into a mysql database but nothing was recording. After doing some research i came with some ideas telling to just utf8_encode the data before inserting them. I have try this but nothing happens also Angry . So i am here to ask if someone had another idea why this insertion is not happening Undecided .
Reply
#2

I had the same problem. It took me a lot of research to get it fixed.

I use the "utf8_general_ci" collation for my database (and for the tables inside it).
In the head section of my views, I have: <meta charset="UTF-8" />
In CodeIgniter's config.php file, I have: $config['charset'] = 'UTF-8';
In CodeIgniter's database.php file, I have:
  'char_set' => 'utf8',
  'dbcollat' => 'utf8_general_ci',

And all my CodeIgniter controllers, libraries, models and views are saved as Utf-8 files (not plain ASCII). My text editor has an option for that.

Hope this will help you.
Reply




Theme © iAndrew 2016 - Forum software by © MyBB