Having some issues inserting data into my UTF-8 database. The main issues I'm having is with words containing ��!.
The code I'm using so far is
$enc = mb_detect_encoding($content);
$data = mb_convert_encoding($content, "ASCII", $enc);
But no luck so far. Does that mean it can't detect the encoding? or something else?