如何使用单引号插入mysql查询?

时间:2018-03-20 13:22:59

标签: php mysql

我正在尝试使用单个qoute '插入查询。它会破坏我的查询。例如

INSERT INTO news (`Id`, `UserId`, `description`) VALUES (1,12,'Hello this descriptrion  and this single qoute ' in sentance');

不插入并给出错误。所以我的问题是每当用户使用单个qoute输入描述时,例如it's very hot today。我该如何处理'  以这种方式单引号?

你回答非常感谢

1 个答案:

答案 0 :(得分:1)

你可以这样做:

  INSERT INTO news (`Id`, `UserId`, `description`) VALUES (1,12,"Hello this descriptrion  and this single qoute ' in sentance");