I've been struggling to get Yii to correctly display utf8 even though both my apache server and my database are setup to correctly display it.
More specifically, I have a set of kanji/kana data that I'm pulling from a mysql database. As a simple test on it, I set up a view page to pull data from it with mysqli and with yii's mvc architecture. When pulled with mysqli, it displays correctly while when pulled with yii it does not. And this is from the same exact page which also means it's from the same exact controller. Am I missing something with forcing the model backend to use utf8 encode?
Image: http://i.imgur.com/BLmrP.png
Here's the code I'm using in the view file for yii's mvc stuff:
<?php $this->widget('zii.widgets.grid.CGridView', array(
'dataProvider'=>$dataProvider,
'enablePagination' => false,
)); ?>
And then the mysqli is about what you'd expect.
Any help would be appreciated.