我使用tinymce表示我提交一些新闻的表格,但不会将其插入数据库 我检查了SQL,它只是尝试将代码插入数据库。它就像
INSERT INTO news (news_title, news, time_added) VALUES (some title, `<p>some text <strong>some strong text</strong></p>`, NOW())
并且它不会将其插入数据库中 谁能解释我为什么以及我必须做什么?
答案 0 :(得分:1)
你需要对内容进行html编码然后插入
使用类似htmlentities($str)
示例:
encodedStr = htmlentities($html);
解码:
$html = html_entity_decode($encodedStr);