I thought someone here may have some experience with this. I fetch utf-8
data from a mysql db using:

$this->data = find('all',$options);

>From within the controller, if I debug($this->data), I get something like:

    [1] => Array
        (
            [Subdivision] => Array
                (
                    [name] => Aïn Témouchent
                )

But if I debug($this->data) in the view, I get something like:

    [1] => Array
        (
            [Subdivision] => Array
                (
                    [name] => A�n T�mouchent
                )

The non-ascii characters don't show up correctly. I can't figure out why
this is happening. In my core.php, I have the following option:

Configure::write('App.encoding', 'UTF-8');

I'm not sure what else I need to check. Any help would be greatly
appreciated.

Thanks,
~Kirk

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to