|
|
 |
Currency exchange rates
Today:
Exchange Rate for currencies in cash:
| Currency |
Purchase |
Sale |
Rate of the central
Bank |
Date |
";
$f = pg_fetch_array( $r, $i, PGSQL_ASSOC );
$d = date( 'd.m.Y', strtotime($f['curdate']) );
$cString="".$f['isoname']." | ".$f['buy']." | ".$f['sale']." | ".$f['cbrate']." | ".$d." | ";
echo $cString;
echo "";
}
?>
Non-cash exchange rate:
| Currency |
Purchase |
Sale |
Rate of the central
Bank |
Date |
";
$f = pg_fetch_array( $r, $i, PGSQL_ASSOC );
$d = date( 'd.m.Y', strtotime($f['curdate']) );
$cString="".$f['isoname']." | ".$f['buybn']." | ".$f['salebn']." | ".$f['cbrate']." | ".$d." | ";
echo $cString;
echo "";
}
?>
Non-cash currency exchange rate for users of the system "Telebank-NN":
| Currency |
Purchase |
Sale |
Rate of the central
Bank |
Date |
";
$f = pg_fetch_array( $r, $i, PGSQL_ASSOC );
$d = date( 'd.m.Y', strtotime($f['curdate']) );
$cString="".$f['isoname']." | ".($f['buybn']*1.0015)." | ".($f['salebn']*1.0015)." | ".$f['cbrate']." | ".$d." | ";
echo $cString;
echo "";
}
?>
* users of the "Telebank-NN" system are offered a preferential
exchange rate fixed by the bank
|
|