mirror of
https://github.com/itflow-org/itflow
synced 2026-08-20 14:35:12 +00:00
Use Short echo tags across the code
This commit is contained in:
@@ -33,7 +33,7 @@ $sql_tax = mysqli_query($mysqli, "SELECT `tax_name` FROM `taxes`");
|
||||
while ($row = mysqli_fetch_assoc($sql_all_years)) {
|
||||
$all_years = intval($row['all_years']);
|
||||
?>
|
||||
<option <?php if ($year == $all_years) { echo "selected"; } ?> > <?php echo $all_years; ?></option>
|
||||
<option <?php if ($year == $all_years) { echo "selected"; } ?> > <?= $all_years ?></option>
|
||||
|
||||
<?php
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user