From a01269ccea6feb9f8cdd7f517dc01cb27b027c76 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Tue, 21 Nov 2023 16:51:05 -0500 Subject: [PATCH] Updated Tax Rate to be a floatval instead of a intval --- products.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/products.php b/products.php index 9a8116fb..18e6ab4f 100644 --- a/products.php +++ b/products.php @@ -84,7 +84,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()")); } else { $tax_name_display = $tax_name; } - $tax_percent = intval($row['tax_percent']); + $tax_percent = floatval($row['tax_percent']); ?>