used PHP number_format() function to make amounts more readable

This commit is contained in:
root
2019-03-31 14:09:47 -04:00
parent 6fe2aba79a
commit 72e3bf0367
5 changed files with 18 additions and 20 deletions

View File

@@ -47,7 +47,7 @@ $sql = mysqli_query($mysqli,"SELECT * FROM transfers ORDER BY transfers.transfer
<td><?php echo $transfer_date; ?></td>
<td><?php echo $account_name_from; ?></td>
<td><?php echo $account_name_to; ?></td>
<td class="text-right text-monospace">$<?php echo $transfer_amount; ?></td>
<td class="text-right text-monospace">$<?php echo number_format($transfer_amount,2); ?></td>
<td>
<div class="dropdown dropleft text-center">
<button class="btn btn-secondary btn-sm" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">