prepare($sql); $stmt->bindParam(':driver_id', $driver_id); $stmt->execute(); if ($stmt->rowCount() > 0) { // Fetch the record $row = $stmt->fetchAll(PDO::FETCH_ASSOC); jsonSuccess($row); } else { // Print a failure message jsonError($message = "No rating record found"); } ?>