CKEditor 不会显示 echo 功能
CKEditor will not show echo function
我在我的博客中实现了 Ckeditor,并且我有一个 "Edit Page"。
在该页面中,我想获取我写的文本,以便我可以明显地编辑它,问题是它没有显示,就像文本的其余部分一样,这是我在连接后的代码等:
while($row = mysqli_fetch_array($run)) {
$title = $row['title'];
$body = $row['body'];
$tag = $row['tag'];
$description = $row['description'];
}
?>
<html>
<head>
<title>Editare Postare</title>
<script src="//cdn.ckeditor.com/4.4.7/standard/ckeditor.js"></script>
</head>
<body>
<form method="post" action="edit_approval.php">
Titlu: <input type="text" name="title" value="<?php echo $title; ?>"><br>
Descriere: <input type="text" name="description" value="<?php echo $description; ?>"><br>
Continut: <br><textarea name="body" value="<?php echo $body;?>"></textarea>
<script>CKEDITOR.replace( 'body' );</script>
Tag: <input type="text" name="tag" value="<?php echo $tag; ?>"> <br>
<input type="hidden" name="id" value="<?php echo $id; ?>"><br><br>
<input type="submit" value="approved">
<input type="submit" value="unapproved">
</form>
</body>
</html>
文本区域的有效 html 是:
<br><textarea name="body" ><?php echo $body;?></textarea>
通常与 rows="4" cols="50"
一起使用,但 ckeditor 对此有自己的设置,但为了回退,您可能需要它们
我在我的博客中实现了 Ckeditor,并且我有一个 "Edit Page"。 在该页面中,我想获取我写的文本,以便我可以明显地编辑它,问题是它没有显示,就像文本的其余部分一样,这是我在连接后的代码等:
while($row = mysqli_fetch_array($run)) {
$title = $row['title'];
$body = $row['body'];
$tag = $row['tag'];
$description = $row['description'];
}
?>
<html>
<head>
<title>Editare Postare</title>
<script src="//cdn.ckeditor.com/4.4.7/standard/ckeditor.js"></script>
</head>
<body>
<form method="post" action="edit_approval.php">
Titlu: <input type="text" name="title" value="<?php echo $title; ?>"><br>
Descriere: <input type="text" name="description" value="<?php echo $description; ?>"><br>
Continut: <br><textarea name="body" value="<?php echo $body;?>"></textarea>
<script>CKEDITOR.replace( 'body' );</script>
Tag: <input type="text" name="tag" value="<?php echo $tag; ?>"> <br>
<input type="hidden" name="id" value="<?php echo $id; ?>"><br><br>
<input type="submit" value="approved">
<input type="submit" value="unapproved">
</form>
</body>
</html>
文本区域的有效 html 是:
<br><textarea name="body" ><?php echo $body;?></textarea>
通常与 rows="4" cols="50"
一起使用,但 ckeditor 对此有自己的设置,但为了回退,您可能需要它们