Heim >Backend-Entwicklung >PHP-Tutorial >请问kindeditor添加与显示数据库的有关问题
请教kindeditor添加与显示数据库的问题
用kindeditor作为文章内容的编辑,可以把kindeditor的内容添加到数据库中,但,修改操作时,kindeditor显示不了数据库的内容。怎么回事?
是不是下面代码要进行修改?
<!--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>