Please, help with my problem. I don't understand why this code don't working on the hosting, but works on localhost. This code is working if I get this xml from file, but I need parse this xml only from URL. Simplexml module is enabled. And how I can parse special symbol(euro)?Please, help me. \[code\]<?phplibxml_use_internal_errors(true);$xml = simplexml_load_file("http://www.aviasales.ru/latest-offers.xml");?><table border="1"><?phpforeach ($xml->xpath('/offers/offer') as $offer) {?> <tr> <td><?php echo $offer["title"]?></td> <td><?php echo $offer["href"]?></td> </tr><?php};?></table>\[/code\]