foreach($arrayUsers as $user) {
echo '<tr><td>'. $user['firstname'] .'</td><td>'. $user['lastname'] .'</td><td>'. $currencies[$user["currency"]] . $user['salary'].
'</td></tr>';
}
?>
Calling 'salary' from a JSON file, but need this to be rounded to 2 decimal places in the output table.