Код: Выделить всё
$comment = $members->prepare("insert into comments(comment) values(?)");
$comment->bind_param('s', $_POST['comment']);
$comment->execute();
Подробнее здесь: https://stackoverflow.com/questions/986 ... ape-quotes
Код: Выделить всё
$comment = $members->prepare("insert into comments(comment) values(?)");
$comment->bind_param('s', $_POST['comment']);
$comment->execute();