7 lines
187 B
PHP
7 lines
187 B
PHP
<?php
|
|
$xml = @file_get_contents('https://www.mnb.hu/arfolyamok/daily/webservice/CurrentExchangeRates.xml');
|
|
if ($xml === false) { die('Hiba'); }
|
|
$rates = simplexml_load_string($xml);
|
|
|
|
?>
|