? Insert currency value on page
osik <[email protected]>
| Newsgroups | gmane.comp.web.oscommerce.devel |
|---|---|
| Message-ID | <b7c0e3afeffc48191a57f8b4b2c89ada@osCommerce-Forums> |
This message was sent from: Development
http://forums.oscommerce.com/viewtopic.php?p=173230#173230
----------------------------------------------------------------
its done )))
<?php
$exchange_amount = mysql_query("SELECT value FROM " . TABLE_CURRENCIES . " WHERE currencies_id=3");
// change 6 to whatever your currency is - check mysql table currencies
$exchange_amount_row = mysql_fetch_array($exchange_amount);
$dollar_amount = $exchange_amount_row["value"];
$dollar_amount = number_format($dollar_amount, 2);
echo $currencies->format('1', false, DEFAULT_CURRENCY) ?> = <?php echo $dollar_amount, ' UAH' ?>
looks like works