2

I have to store the phonetics of words in a database in this format:

blow = \ˈblō\ 

But when I see in the database, it's stored like this:

blow = \?bl?\

There are ? instead of symbols you can see.

Please correct me as to what I am doing wrong.

Thanks

Funk Forty Niner
  • 74,450
  • 15
  • 68
  • 141
Sunil Kumar
  • 1,349
  • 3
  • 14
  • 25

1 Answers1

3

your database does not support all characters i would recommend to change it to something like this:

character set: utf8
collation: utf8_general_ci

right now you have a standard character set and thats why it changes to ?????

lauw
  • 545
  • 3
  • 15