vote up 2 vote down star

Hi guys - I have a simple script which inserts values from a text file into a mysqldatabase - however some accented characters aren't inserted properly. Like lets say I have a word:

Reykjavík

I try to insert it using a simple insert sql statement and instead I this value ends up in the database????

Reykjavík

How do I fix this?

====EDIT====

I tried to change the collation - the thing is that I'm using navicat here and if I lets say try to insert any such word with accentuated characters like this using the navicat QUery generator or panel it is inserted perfectly with no problem whatso ever - however my php script when it runs a similar query end s up putting trash in the table :( whats going on here...

flag

66% accept rate

1 Answer

vote up 1 vote down check

The set of questions marks is because you are inserting a character whose encoding is not understood by MySQL. Try collating with utf8_bin. This should work.

link|flag
Thanks but how do I collate? – Ali Aug 23 at 7:41
1  
Oh uh never mind I figured that out thanks :) – Ali Aug 23 at 7:43
:( its not working – Ali Aug 23 at 7:53
1  
Make sure the php encoding is set to UTF8 – LiraNuna Aug 23 at 7:58
Woo Hoo :D It works thanks for the help!!!! – Ali Aug 23 at 8:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.