prepare($sql); $stmt->execute(); // Fetch all records as an associative array $employee_data = $stmt->fetchAll(PDO::FETCH_ASSOC); // Check if any records were retrieved if ($employee_data) { // If records were found, print the data as JSON jsonSuccess($data = $employee_data); } else { // If no records were found, print a failure message jsonError($message = "No employee records found"); } ?>