selam arkadaşlar ..
aşağıdaki kod ile çok kolay bi şekilde döviz bilgilerini web sitenizde gösterebilirsiniz ..
umarım birilerinin işine yarar
iyi çalışmalar herkese .
aşağıdaki kod ile çok kolay bi şekilde döviz bilgilerini web sitenizde gösterebilirsiniz ..
umarım birilerinin işine yarar
iyi çalışmalar herkese .
PHP:
<?
$content = file_get_contents("http://www.tcmb.gov.tr/kurlar/today.xml");
$dolar_bul = explode('<Currency Kod="USD" CurrencyCode="USD">' ,$content);
$dolar_bul = explode('</ForexBuying>',$dolar_bul[1]);
$dolar_alis = explode('<ForexBuying>',$dolar_bul[0]);
$dolar_bul = explode('</ForexSelling>',$dolar_bul[1]);
$dolar_satis = explode('<ForexSelling>',$dolar_bul[0]);
$dolar_alis = $dolar_alis[1];
$dolar_satis = $dolar_satis[1];
$euro_bul = explode('<Currency Kod="EUR" CurrencyCode="EUR">' ,$content);
$euro_bul = explode('</ForexBuying>',$euro_bul[1]);
$euro_alis = explode('<ForexBuying>',$euro_bul[0]);
$euro_bul = explode('</ForexSelling>',$euro_bul[1]);
$euro_satis = explode('<ForexSelling>',$euro_bul[0]);
$euro_alis = $euro_alis[1];
$euro_satis = $euro_satis[1];
?>
<span class="kat" >T.C. Merkez Bankası Döviz Kuru </span>
<div class="content_bgrnd_4">
<table width="100%" border="0" cellspacing="2" cellpadding="2">
<tr>
<td width="31%"> </td>
<td width="34%"><center>
<strong><font face="Trebuchet MS" size="2">ALIŞ</font></strong>
</center></td>
<td width="35%"><center>
<strong><font face="Trebuchet MS" size="2">SATIŞ</font></strong>
</center></td>
</tr>
<tr>
<td><font face="Trebuchet MS" size="2">USD dolar</font></td>
<td width="34%"><div align="right"><font face="Trebuchet MS" size="2">
<strong>
<?=$dolar_alis ?>
</strong> YTL</font>
</div></td>
<td width="35%"><div align="right"><font face="Trebuchet MS" size="2">
<strong>
<?=$dolar_satis ?>
</strong> YTL</font>
</div></td>
</tr>
<tr>
<td><font face="Trebuchet MS" size="2">EUR euro </font></td>
<td width="34%"><div align="right"><font face="Trebuchet MS" size="2">
<strong><?=$euro_alis ?></strong> YTL</font>
</div></td>
<td width="35%"><div align="right"><font face="Trebuchet MS" size="2">
<strong><?=$euro_satis ?></strong> YTL</font>
</div></td>
</tr>
</table>
</div>