What do I need to escape when sending a query?

前端 未结 11 1297
执念已碎
执念已碎 2021-01-07 18:01

When you execute a SQL query, you have to clean your strings or users can execute malicious SQL on your website.

I usually just have a function escape_string(blah),

11条回答
  •  独厮守ぢ
    2021-01-07 18:55

    In MySQL query, when using LIKE, also make sure to escape the "_" characters as it is not escaped by mysql_real_escape_string.

    For reference, check here

提交回复
热议问题