Skip to content

FaletarMarko1/EuroLiveViewer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EuroLiveViewer

EuroLiveViewer is a web app that lets you check the exchange rate of the euro since the day it was introduced in Croatia.

You can also convert the euro to any other presented currency.


The data is collected in an XML file from hnb.hr.
https://api.hnb.hr/tecajn-eur/v3


  1. Collecting data:
    $url = "https://api.hnb.hr/tecajn-eur/v3?format=xml&datum-primjene=" . $datum;
    $xml = simplexml_load_file($url) or die("Ne postoje podaci za taj datum");

  1. Displaying data to user:
    foreach ($xml->item as $item): echo '<tr>'; echo '<td>' . $item->valuta . '</td>'; echo '<td>' . $item->drzava . '</td>'; echo '<td>' . $item->datum_primjene . '</td>'; echo '<td>' . $item->kupovni_tecaj . '</td>'; echo '<td>' . $item->srednji_tecaj . '</td>'; echo '<td>' . $item->prodajni_tecaj . '</td>'; echo '</tr>'; endforeach; }