<?php $result = new stdClass(); $result->GBP = "10.00"; $result->USD = "12.00"; foreach ($result as $currency => $value) { $currencyWithTax = $value .' + TAX'; $result->total[$currency] = $currencyWithTax; } print_r($result);
You have javascript disabled. You will not be able to edit any code.