twój kod jest dobry, ale nie powinieneś nazywać ich tą samą nazwą $stmt
pierwsza instrukcja to $stmt
następnie nadaj drugiej instrukcji inną nazwę, np. $stmt2
. lub jakakolwiek nazwa chcesz.
przykład:
$stmt = $con->prepare("INSERT INTO reviews (order_id, comment) VALUES (?, ?)");
$stmt->bind_param('is', $order_id, $comment);
$stmt->execute();
$stmt->close();
// Update transactions to show review added
$stmt2 = $con->prepare("UPDATE transactions SET review = ? WHERE order_id = ?");
$stmt2->bind_param('ii', 1, $order_id);
$stmt2->execute();
$stmt2->close();
i debuguj swój kod i zobacz, gdzie jest błąd, użyj tego.
if ($stmt = $con->prepare("INSERT INTO reviews (order_id, comment) VALUES (?, ?)") ){
$stmt->bind_param('is', $order_id, $comment);
$stmt->execute();
$stmt->close();
}
else {printf("Error message:: %s\n", $con->error);}