prepare($sql); $stmt->bindParam(':driverID', $driverID); $stmt->bindParam(':helpQuestion', $helpQuestion); $stmt->execute(); if ($stmt->rowCount() > 0) { jsonSuccess(null, "Help question saved successfully"); } else { jsonError("Failed to save help question"); } ?>