我正在为某些人建立一个可编辑的网站,我正在使用 ckeditor 让他们能够在线使用 WYSIWYG,但是当我使用 post 方法保存数据时,代码会变得混乱......
这就是我使用 ckeditor 保存选项卡和所有可编辑网站的方式:
<html>
<head>
<title>CKEditor Sample</title>
<script src="ckeditor/ckeditor.js"></script>
</head>
<body>
<form action="login/updateText.php" method="post">
<p>
File being modified: <textarea name="name" id="name">about.php</textarea>
<textarea name="editor1" id="editor1">
<?php echo file_get_contents('about.php');?>
</textarea>
<script>
CKEDITOR.replace( 'editor1' );
</script>
</p>
<p>
<input type="submit">
</p>
</form>
</body>
</html>
但在编辑后:
<div class="menuslct">
<table border="0" style="text-align:center; width:980px">
<tbody>
<tr>
<td><a href="/en/aboutus"><img src="/common/img/icons/aboutus.png" style="height:80px; width:80px" /></a></td>
<td><a href="/en/aboutus/ourteam"><img src="/common/img/icons/12 our team.jpg" style="height:78px; width:78px" /></a></td>
<td><a href="/en/aboutus/howtohelp"><img src="/common/img/icons/11 help.jpg" style="height:78px; width:78px" /></a></td>
</tr>
<tr>
<td>About Us</td>
<td>Our Team</td>
<td>How to help</td>
</tr>
</tbody>
</table>
</div>
保存的 html 代码如下所示:
<div class="\"menuslct\"">
<table border="\"0\"" style="\"height:80px">
<tbody>
<tr>
<td>About Us</td>
<td>Our Team</td>
<td>How to help</td>
</tr>
</tbody>
</table>
</div>
<p><a href="\"><img src="\" style="\"height:78px" /></a><a href="\"> <img src="\" style="\"height:78px" /></a></p>
这是updateText.php:
<?php
$filename = $_POST['name'];
$str = $_POST['editor1'];
$fh = fopen($filename, "w");
fwrite($fh, $str);
fclose($fh);
header("Location: modify.php");
?>
所以我不知道我在搞砸什么......