Posts by Rodrigo Boratto • 111 points
1 post
-
1
votes3
answers977
viewsA: Email exiting with strange characters in PHP
You can convert the values to UTF8 in real time using PHP functions, utf8_encode and utf8_decode: utf8_encode($campoDoBanco) Or convert from UTF8 to ISO using: utf8_decode ($campoDoBanco) This…