mirror of
https://github.com/itflow-org/itflow
synced 2026-03-05 21:34:51 +00:00
Fix typo
This commit is contained in:
@@ -37,7 +37,7 @@ $sql = mysqli_query($mysqli, "
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
while ($row = mysqli_fetch_array($sql)) {
|
while ($row = mysqli_fetch_array($sql)) {
|
||||||
$client_id = intval($_row['client_id']);
|
$client_id = intval($row['client_id']);
|
||||||
$client_name = htmlentities($row['client_name']);
|
$client_name = htmlentities($row['client_name']);
|
||||||
$recurring_monthly_total = floatval($row['recurring_monthly_total']);
|
$recurring_monthly_total = floatval($row['recurring_monthly_total']);
|
||||||
$recurring_total = $recurring_total + $recurring_monthly_total;
|
$recurring_total = $recurring_total + $recurring_monthly_total;
|
||||||
@@ -50,7 +50,7 @@ $sql = mysqli_query($mysqli, "
|
|||||||
</tr>
|
</tr>
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Total Monthly Income</th>
|
<th>Total Monthly Income</th>
|
||||||
|
|||||||
Reference in New Issue
Block a user