PHP: Updating with öäå into MySQL

I already have done this:\[code\]mysql_set_charset("utf8",$link);\[/code\] at the connection\[code\]mysql_query("SET NAMES 'UTF8'");\[/code\] at the connection + on every table in databasechanging from latin1 to utf8 collation + character for every table + columnsfile have meta utf8 + \[code\]header('Content-Type: text/html; charset=utf-8');\[/code\] plus the files itself are formatted in utf-8( without bom)where link is mysql_connect(), it shows the ??? characters fine when i take them out from database, but when i try to mysql_query UPDATE with stuff, that contains ???, it stores as ????? .. How can i fix this?In the database the columns and so are, latin1_swedish_ci, as said it INSERT ???s without problem, and echo it out too very well, but not when i try to UPDATE SET $user = '???'
 
Back
Top