I'm having trouble displaying the special character. I have words in my database with ë and ï in them. now when I send it via remote service to my flex project it comes in other characters like Ã.
This is my code (in codeigniter)
function get_words(){
$q = $this->db->get('words');
if($q->num_rows() > 0){
foreach ($q->result() as $row)
{
$data[] = $row;
}
return $data;
}
}