mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Set var recurring_total to start/default at 0 to prevent undefined errors
This commit is contained in:
@@ -22,7 +22,7 @@ $sql_clients = mysqli_query($mysqli,"SELECT * FROM clients WHERE company_id = $s
|
||||
</thead>
|
||||
<tbody>
|
||||
<?php
|
||||
$recurring_total = 0; // Default value
|
||||
$recurring_total = 0; // Default value: 0
|
||||
while ($row = mysqli_fetch_array($sql_clients)) {
|
||||
$client_id = $row['client_id'];
|
||||
$client_name = htmlentities($row['client_name']);
|
||||
|
||||
Reference in New Issue
Block a user