Reputation: 3153
I'm using Zend_Form to display a simple form containing a combobox, whose data is directly extracted from the database. The values are country names in the website native language (French), containing special characters (é, è, ï, ...). My files are all in UTF-8, as well as the table and the website charset.
But all the entries containing a special character appear as empty lines.
Any idea why ?
Thanks !
Upvotes: 1
Views: 236
Reputation: 184
Make sure all your script and view files are encoded on UTF-8 as well. Make sure your connection to your DB ask for UTF-8.
On missing piece in the chain can lead to erroneous display.
Upvotes: 2