mirror of
https://github.com/itflow-org/itflow
synced 2026-03-05 13:24:51 +00:00
Format output for the proper code syntax, this should fix many various issues with output formatting and page breakage
This commit is contained in:
@@ -61,7 +61,7 @@ $sql_categories_expense = mysqli_query($mysqli,"SELECT * FROM categories WHERE c
|
||||
<?php
|
||||
while($row = mysqli_fetch_array($sql_categories_income)){
|
||||
$category_id = $row['category_id'];
|
||||
$category_name = $row['category_name'];
|
||||
$category_name = htmlentities($row['category_name']);
|
||||
?>
|
||||
|
||||
<tr>
|
||||
@@ -268,7 +268,7 @@ $sql_categories_expense = mysqli_query($mysqli,"SELECT * FROM categories WHERE c
|
||||
<?php
|
||||
while($row = mysqli_fetch_array($sql_categories_expense)){
|
||||
$category_id = $row['category_id'];
|
||||
$category_name = $row['category_name'];
|
||||
$category_name = htmlentities($row['category_name']);
|
||||
?>
|
||||
|
||||
<tr>
|
||||
|
||||
Reference in New Issue
Block a user