我已经制作了一个自己的litle cms与tinymce。在预标签中插入纯文本时,代码会在网站上以正确的方式输出,但是当我更新编辑器时,html标签会被删除。
Tinymce设置
<script type="text/javascript">
tinyMCE.init({
selector: "textarea.editme",
width : "60.5%",
resize: false,
preformatted : true,
menubar:false,
});
</script>
Tinymce编辑
<textarea name="content"><?php echo $data['course_content'];?> </textarea><br />
我在这里回复了数据库中的内容,但正如我所说,在textarea中删除了html标签。显示了所有其他文本。
答案 0 :(得分:0)
我在所有postvars上使用PHP FILTER_SANITIZE_SPECIAL_CHARS时遇到了同样的问题。 : - )