Hello
I'm developing a website written in PHP
the website uses MySQL to store data
the website is developed mainly with dreamweaver, and handcoded where necessary
when I send data from a form to the database, if the content of the form field (textarea) contains chars like èòàùì they're written to the database as è, ò, à ,ù and visualized in html pages as little squares
the database field where this text is stored is a text field, latin1_swedish_ci (hence if I'm correct it should support òàùèì)
I have tried with utf8_unicode_ci as well, no difference
if I print those chars on the page before executing the insert they are ok, it seems like the are 'corrupted' while being sent to the database
the page where I fill the form is UTF-8
any ideas?





Bookmarks