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>