Use Short echo tags across the code

This commit is contained in:
johnnyq
2026-07-28 18:47:52 -04:00
parent 0031438bce
commit b3f959ac55
355 changed files with 3113 additions and 3113 deletions

View File

@@ -32,7 +32,7 @@ $monthlyTotals = array_fill(1, 12, 0); // Initialize monthly totals for each mo
while ($row = mysqli_fetch_assoc($sql_expense_years)) {
$expense_year = $row['expense_year'];
?>
<option <?php if ($year == $expense_year) { ?> selected <?php } ?> > <?php echo $expense_year; ?></option>
<option <?php if ($year == $expense_year) { ?> selected <?php } ?> > <?= $expense_year ?></option>
<?php } ?>