Widgets
Web sitenize canlı döviz kurları gömmek için bir kod parçacığı oluşturun. Aşağıdan para birimi çiftini seçin, widget'ı önizleyin ve HTML kodunu kopyalayın.
Adım 2: Widget'ı yapılandırın
Adım 3: Kodu kopyalayın
<div><?php
$url = "https://www.currencystats247.com/api/widgets/rates-rss/?langId=1&from=usd&type=fiat&to=eur";
$xml = simplexml_load_file($url);
foreach($xml->channel->item as $item){
echo $item->description;
}
?></div>Nasıl çalışır
- The widget uses an RSS feed from CurrencyStats247.
- Paste the PHP code into your website where you want the rates to appear.
- Data is refreshed automatically with each page load (cached for 5 minutes).
- Currency names link back to the pair history page on CurrencyStats247.