0) { // Create an array to hold the data $barTabs = []; // Fetch each row while ($row = mysqli_fetch_assoc($result)) { $barTabs[] = $row; } // Return the data as JSON echo json_encode($barTabs); } else { echo json_encode([]); } // Close the database connection mysqli_close($conn); ?>