I am using simple html dom to retrieve content from another website, but the thing is theres a character encoding issue with the stuff retrieved using simple html dom. The c
Go to website and check their charset by viewing page info.
$text = iconv(mb_detect_encoding($text), "UTF-8//TRANSLIT//IGNORE", $text);