इससे पहले कि आप उन्हें नीचे दिए गए कोड के रूप में उपयोग कर सकें, आपको मान निर्दिष्ट करने की आवश्यकता है:
$firstname = $_POST['firstname'];
$comment = $_POST['comment'];
$sql = $conn->prepare("INSERT INTO Comments (Name, Comment) VALUES (?, ?)");
$stmt->bind_param("sss", $firstname, $comment);