I have been surprised to see that all special caracters are encoded in the database, that's not handy if you want to open your roster data to an other application.
So I am trying to find the function to make the conversion, but I do not find anything because I can't even figure out what kind of encoding it is. I does not seems to be done in the database table, but rather before when the records are inserted.
I'll probably find a way to do it but since there's already 2 hours that I am searching, I rather prefear to ask you all and switch to others things until I got a reply
Here's what I want to do:
My nickname, for instance, is Aränel.
In the members table, its encoded as Aränel
When I query my base like this
- Code: Select all
SELECT * FROM `WoW_members` WHERE `name`='Aränel'
it don't find the record.
So I need the PHP function to convert all special characters in my query fields before trigger it.
Txs for lighting me