$userTb = new My_Tb_User(); //Child of Zend_Db_Table_Abstract $row = $userTb->find(9)->current(); $row->name = 'STÖVER'; $row->save();
Inside the user table, on line 9, for the value of the column name ST stored instead of STÖVER ?
Ö is a Germanic symbol supported in UTF-8 . IF I manually enter "STÖVER" using phpmyadmin, it will be stored correctly.
I also passed the charset parameter with utf8 when creating the db adapter, but still no luck!
source share