prepare($sql); $stmt->bindParam(':helpQuestion', $newHelpQuestion); $stmt->bindParam(':id', $helpID, PDO::PARAM_INT); $stmt->execute(); if ($stmt->rowCount() > 0) { jsonSuccess(null, "Help question updated successfully"); } else { jsonError("Failed to update help question"); } ?>