Forum Moderators: coopster
<?php
// * AT Locale *
function getMoneyAT($pricesAT) {
setlocale(LC_MONETARY, 'de_AT.UTF-8');
return money_format('%n', $pricesAT);
}
function getMoneyATd($pricesAT) {
setlocale(LC_MONETARY, 'de_AT.UTF-8');
return money_format('%.0n', $pricesAT);
}
// AT current prices
$atCurrent = "1";
switch ($atCurrent) {
case "1":
$at11 = getMoneyAT(29.99);
break;
case "2":
$at11 = getMoneyAT(29.99);
break;
default:
$at11 = getMoneyAT(29.99);
}
// AT full prices
$at11f = getMoneyAT(59.99);
// AT discounts
$at11d = getMoneyATd($at11f - $at11);
?> <?php echo $at32f;?> <?php echo getMoneyAT($at32f);?>