0

我正在为某些人建立一个可编辑的网站,我正在使用 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="\&quot;menuslct\&quot;">
<table border="\&quot;0\&quot;" style="\&quot;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="\&quot;height:78px" /></a><a href="\">  <img src="\" style="\&quot;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"); 

?>

所以我不知道我在搞砸什么......

4

2 回答 2

1

看起来魔术引号会弄乱您的 $_POST 变量。

在 php.ini 文件中禁用它:

; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off

禁用魔术行情

于 2013-11-12T14:37:57.367 回答
0

如果您想使用 CKEditor 添加 HTML 代码,您必须首先确保您已按下“Source”按钮,否则它将对输入进行编码,您将遇到上述问题。

于 2013-11-12T14:07:04.767 回答