What do I need to escape when sending a query?

前端 未结 11 1241
执念已碎
执念已碎 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:49

    the MySQL C API has it's own mysql_escape_string(). Using it or it's equivalent would be best.

提交回复
热议问题