prepare($sql); $stmt->bindParam(':driverID', $driverID, PDO::PARAM_STR); $stmt->execute(); if ($stmt->rowCount() > 0) { $record = $stmt->fetchAll(PDO::FETCH_ASSOC); jsonSuccess($record); } else { jsonError("Help question not found"); } ?>