views:

96

answers:

2

am using fckeditor inside codeigniter framework when i retrive data from data base it show an unreconized characters instead of special characters (french charachters like é è ç ..) ? in data base data is converted to html entities, and i can show it without problem on the front pages, but in the backend i have a probleme with the editor!! thanks

A: 

If you're using htmlentities then use html_entity_decode($string); before you print it on the textarea.

More info: http://www.php.net/manual/en/function.html-entity-decode.php

Isern Palaus
A: 

I suggest using tinymce editor because it is lightweight and provides much more options as compared to fckeditor.

http://tinymce.moxiecode.com/

Alpesh