Possible Duplicate:
how to convert ISO 8859-1 Characters to UTF-8
i would like to get the HTML content of this uRL: http://www.20minutos.es/noticia/1635461/0/aforo/madrid-arena/vigilantes/
But there are missing characters (like 'ñ' or 'á', 'é'...)
The code to get the HTML is
$html = file_get_contents_utf8($url);
and then:
$html = mb_convert_encoding($html, 'HTML-ENTITIES', "UTF-8");
I've tried a few alternatives but still not working.
Any ideas? Thanks