Ckeditor - 如何“保存”到我正在编辑的网页?

时间:2011-07-01 08:35:46

标签: ckeditor

PHP Version 5.3.3-1 Ubuntu 10.10 Apache 2.2

Ckeditor 3.6.1

我可以编辑和保存,但我正在编辑的网页没有更新?已编辑的文本将显示在新窗口中。我想要更新我正在编辑的网页。

ckeditor.jstest.htmlposteddata.php都位于同一目录/var/www/

的test.html

< head>
  < title>Test Page < /title >
  < meta http-equiv="content-type" content="text/html; charset=utf-8"/ >
  < script type="text/javascript" src="ckeditor.js">< /script >
< /head >
< body >
< form action="posteddata.php" method="post" >
< textarea id="editor1" name="editor1" >
&lt;p&gt;Your text goes here&lt;/p&gt;
< /textarea>
< script type="text/javascript" >
window.onload = function()
{CKEDITOR.replace( 'editor1' );};
 < /script>
< input type="submit" value="Submit"/ >
< /form>
< /body>
< /html>

posteddata.php

< ?php
if ( isset( $_POST ) )
$postArray = &$_POST ;          // 4.1.0 or later, use $_POST
else
$postArray = &$HTTP_POST_VARS ; // prior to 4.1.0, use HTTP_POST_VARS
foreach ( $postArray as $sForm => $value )
{
if ( get_magic_quotes_gpc() )
    $postedValue = htmlspecialchars( stripslashes( $value ) ) ;
else
    $postedValue = htmlspecialchars( $value ) ; ?>
    < tr>
        < th style="vertical-align: top"><?php echo htmlspecialchars($sForm); ?>
< /th>
        < td><pre class="samples"><?php echo $postedValue?></pre></td>
    < /tr>



< ?php }
?>  

2 个答案:

答案 0 :(得分:0)

您的所有代码都打印出您刚刚输入的内容。它不会将其保存在任何地方。

可能最简单的方法是将更改存储在数据库中,然后每次加载它们。

这是一个教程;如果你想在PHP中做任何有用的事情,值得一读:http://www.w3schools.com/php/php_mysql_intro.asp

答案 1 :(得分:0)

有一个提交表单的“保存”插件。获取提交的表单并将其保存在您的数据库或文件中。