在数据库中插入富文本编辑器中的代码

时间:2016-08-15 16:43:33

标签: php mysql database rich-text-editor

我使用tinymce表示我提交一些新闻的表格,但不会将其插入数据库 我检查了SQL,它只是尝试将代码插入数据库。它就像

INSERT INTO news (news_title, news, time_added) VALUES (some title, `<p>some text <strong>some strong text</strong></p>`, NOW())

并且它不会将其插入数据库中 谁能解释我为什么以及我必须做什么?

1 个答案:

答案 0 :(得分:1)

你需要对内容进行html编码然后插入

使用类似htmlentities($str)

的内容

示例:

encodedStr = htmlentities($html);

解码:

$html = html_entity_decode($encodedStr);