Thanks! [it was 0.05 btw]
PHP Code:
<?php
require_once("gcc.php");
$ccy = new gcc();
print round(($ccy->get_ccy("USD", "EUR", 1) - 0.05), 2);
print round(($ccy->get_ccy("USD", "EUR", 1) - 0.15), 2);
?>
Last question, how can add a label/tag lets say:
PHP Code:
<?php
require_once("gcc.php");
$ccy = new gcc();
print round(($ccy->get_ccy("USD", "EUR", 1) - 0.05), 2); Sale
print round(($ccy->get_ccy("USD", "EUR", 1) - 0.15), 2); Buy
?>
Thx!