Hi. I use a fuction to retrieve some information from a remote site:
$dom = new DOMDocument;
@$dom->loadHTMLFile($url);
$page_content = $dom->saveHTML();
When I echo the content, some characters appear like 'á'. I have tried many things from the internet, but nothing helped.
Is there a solution?