Format output for the proper code syntax, this should fix many various issues with output formatting and page breakage

This commit is contained in:
johnnyq
2022-12-02 19:58:21 -05:00
parent 3067e6bd1e
commit b6e540825f
128 changed files with 1222 additions and 1227 deletions

View File

@@ -139,22 +139,22 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli,"SELECT FOUND_ROWS()"));
while($row = mysqli_fetch_array($sql)){
$revenue_id = $row['revenue_id'];
$revenue_description = $row['revenue_description'];
$revenue_reference = $row['revenue_reference'];
$revenue_description = htmlentities($row['revenue_description']);
$revenue_reference = htmlentities($row['revenue_reference']);
if(empty($revenue_reference)){
$revenue_reference_display = "-";
}else{
$revenue_reference_display = $revenue_reference;
}
$revenue_date = $row['revenue_date'];
$revenue_payment_method = $row['revenue_payment_method'];
$revenue_amount = $row['revenue_amount'];
$revenue_currency_code = $row['revenue_currency_code'];
$revenue_payment_method = htmlentities($row['revenue_payment_method']);
$revenue_amount = htmlentities($row['revenue_amount']);
$revenue_currency_code = htmlentities($row['revenue_currency_code']);
$revenue_created_at = $row['revenue_created_at'];
$account_id = $row['account_id'];
$account_name = $row['account_name'];
$account_name = htmlentities($row['account_name']);
$category_id = $row['category_id'];
$category_name = $row['category_name'];
$category_name = htmlentities($row['category_name']);
?>