首页 >后端开发 >php教程 >请问kindeditor添加与显示数据库的有关问题

请问kindeditor添加与显示数据库的有关问题

WBOY
WBOY原创
2016-06-13 10:57:12891浏览

请教kindeditor添加与显示数据库的问题
用kindeditor作为文章内容的编辑,可以把kindeditor的内容添加到数据库中,但,修改操作时,kindeditor显示不了数据库的内容。怎么回事?
是不是下面代码要进行修改?

PHP code
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><?php $htmlData = '';    if (!empty($_POST['content1'])) {        if (get_magic_quotes_gpc()) {            $htmlData = stripslashes($_POST['content1']);        } else {            $htmlData = $_POST['content1'];        }    }?><textarea name="content1" style="width:700px;height:200px;visibility:hidden;"><?php echo htmlspecialchars($htmlData); ?></textarea>

请高手指点,谢谢!!

------解决方案--------------------
echo $htmlData ; //有不有数据哦
------解决方案--------------------
先确定htmlspecialchars($htmlData)有内容没,最后确认编辑器加载正确了没
声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn