使用ckeditor在网页上显示图像,在图像源中添加额外的双引号和斜杠
我在textarea上使用ckeditor,在textarea中输入的文本的html源代码保存在数据库中,但是对于图像,src添加了额外的双引号....这会阻止图像在该页面...该怎么办,请帮忙。我正在使用:
mysql_real_escape_string($TextAreaSourceCode);
请帮忙,如何删除 img src 元素中添加的额外引号。
I am using ckeditor on a textarea, the html source code of the text entered in the textarea is saved in the database, but for an image, the src is added with extra double quotes....this stops the image from being visible on the page...what to do please help. I am using :
mysql_real_escape_string($TextAreaSourceCode);
Please help, how to remove the extra quotes added in the img src element.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在输出之前进行向后替换即可。
在mysql_real_escape_string 文档页面上查看您应该替换的其他内容
UPD: mysql_real_escape_string 替换值中的所有危险(SQL 注入的含义)字符。例如替换“on \”等。有关完整列表,请参阅该函数的文档。不知道为什么要添加额外的引号,但问题可能出在这个替换中。
也许如果您向我们提供输入和结果的示例,我可以告诉您更多信息
Just do the backward replacing before output.
Look what other you should replace on the mysql_real_escape_string documentation page
UPD: mysql_real_escape_string replaces all dangerous (in meaning of SQL-injections) characters in value. For example, replaces " on \" and so on. For full list look documentation on the function. Don't know why it's adding extra quotes, but probably the problem is in this replacement.
Maybe if you provide us with example of input and result I could tell you more