Hi,
When I am echoing a row from a database, if the string contains "'", it will be displayed as "?"
How do I prevent this? I've tried urldecode, etc. but can't find a solution.
Thanks for any help, ~Oni.
U should check your charset encoding type ...
Thanks. How do I do that?
If your db table use ISO-8859-1 charset and your html page use UTF-8 charset then ISO-8859-1 characters are not recognize by UTF-8 so u should try to use the same charset ...
Thank you!! I changed it to UTF-8 and it was still doing it... but then I noticed after I converted it, it change the ' to ? in the database.
Cheers, ~Oni.