如何安全地将用户输入的代码保存到数据库
我的网站上有一个部分,用户可以在其中提交代码。我想安全地存储到数据库。
我正在使用 php。我尝试使用 html purifier 将数据保存到数据库,但它删除了所有代码。
我很感激任何帮助。
谢谢。
I have section on my site where users can submit code. I want to safely store to the database.
I am using php. I tried using html purifier to save data to the database, but it removes all the code.
I appreciate any help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用 cakephp 的 save 方法保存到数据库时,您将自动受到 SQL 注入的保护。
有用的链接:
When you save to the database using cakephp's save method, you are automatically protected from SQL injection.
Useful Link: