我有一个自制的博客,我发表文章。我将文章存储在db(mysql)中,并且我不时想编辑文章。
每当我运行此代码时(在我的编辑页面中),我只会以简单的形式检索文本(没有字体,没有颜色,没有任何内容),只有基本文本:
<form method="post" action="edit_script.php">
Title:<input type="text" name="title" value="<?php echo $title; ?>"><br>
Body:<br><input name="body" value="<?php echo $body; ?>">
<script>CKEDITOR.replace( 'body' );</script> (<-this is the rich text editor I use)
<input type="hidden" name="id" value="<?php echo $id; ?>"><br><br>
<input type="submit" value="submit">
</form>
每当我编辑它时,我会添加一个字体大小为14的单词,它会显示在主页面上,就像其他单词一样,都是相同的字体。
这是主页面代码(我在编写文本后显示文本的那个||基本相同的代码):
while($row = mysqli_fetch_array($run)) {
echo "<h1>" . $row['title'] . "</h1>";
echo $row['body'];
echo "<h6>" . $row['data'] . "</h6>";
}
同样,文字显示,它只是没有自定义(编辑等)
提前致谢!