关于数据库安全
我将准备好的语句与 mysqli(); 一起使用为了在我的网站上插入和检索数据,我还使用了bind_param,因此我不会直接将变量添加到查询中。我使用strip_tags来清理任何输入,我还应该注意什么?
I am using prepared statements with mysqli(); to insert and retrieve data on my website also i used bind_param so i don't add variables directly into the query.I used strip_tags to clean any inputs what else should i look out for ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不要在数据库输入上使用 strip_tags():在浏览器输出上使用 htmlentites()(或适当的情况下使用 urlencode())。
Don't use strip_tags() on database input: use htmlentites() (or urlencode() where appropriate) on browser output.