Help retrieving currency from a site
Posted: Mon Aug 21, 2006 10:50 pm
hello, pls advice how could I retrieve currency values from a site.
this is the table structure where currencyes are stored, but have no ideea how should I retrieve them.
Currencies are changing each day.
$site_name_example = "www.example.com/currency.php";
thx in advance
this is the table structure where currencyes are stored, but have no ideea how should I retrieve them.
Currencies are changing each day.
$site_name_example = "www.example.com/currency.php";
Code: Select all
<table CELLSPACING="0" CELLPADDING="5" width="100%">
<tr>
<td WIDTH="30%" bgcolor="#808080" HEIGHT="16" align="left" class="tableHead">Currency</td>
<td WIDTH="25%" bgcolor="#808080" HEIGHT="16" align="center" class="tableHead">Symbol</td>
<td WIDTH="21%" bgcolor="#808080" HEIGHT="16" align="right" class="tableHead">Buy</td>
<td WIDTH="21%" bgcolor="#808080" HEIGHT="16" align="right" class="tableHead">Sell</td>
</tr>
<tr class="normal">
<td class="normal" bgcolor="#FFFFFF" align="left">1 AMERICAN DOlLAR</td>
<td class="normal" bgcolor="#FFFFFF" align="center">USD</td>
<td class="normal" bgcolor="#FFFFFF" align="right">2.7018</td>
<td class="normal" bgcolor="#FFFFFF" align="right">2.7919</td>
</tr>
<tr class="normal">
<td class="normal" bgcolor="#F3F3F3" align="left">1 EURO</td>
<td class="normal" bgcolor="#F3F3F3" align="center">EUR</td>
<td class="normal" bgcolor="#F3F3F3" align="right">3.4900</td>
<td class="normal" bgcolor="#F3F3F3" align="right">3.5600</td>
</tr>
<tr class="normal">
<td class="normal" bgcolor="#FFFFFF" align="left">1 LIRA STERLINA</td>
<td class="normal" bgcolor="#FFFFFF" align="center">GBP</td>
<td class="normal" bgcolor="#FFFFFF" align="right">5.0687</td>
<td class="normal" bgcolor="#FFFFFF" align="right">5.2638</td>
</tr>
</table>