尝试将CKEditor集成到php页面中

时间:2013-11-16 22:36:48

标签: php ckeditor

我正在尝试将CKEditor集成到我的简单CMS中。我让它显示在页面上,但它只是在一切之上。我想知道如何让它进入正确的位置,在我的标题文本框下面?这是我的代码:

require_once 'conn.php';
include_once 'ckeditor/ckeditor.php';
$CKEditor = new CKEditor();
$CKEditor->editor('body');
$title= '';
$body= '';
$article= '';
$author_id= '';
if (isset($_GET['a'])
    and $_GET['a'] == 'edit'
    and isset($_GET['article'])
    and $_GET['article']) {
        $sql = "SELECT title, body, author_id FROM cms_articles " .
        "WHERE article_id=" . $_GET['article'];
        $result = mysql_query($sql, $conn) or
            die ('Could not retrieve article data: ' . mysql_error());
        $row = mysql_fetch_array($result);
        $title = $row['title'];
        $body = $row['body'];
        $article = $_GET['article'];
        $author_id = $row['author_id'];
    }
    require_once 'header.php';
?>
<form method="post" action="transact-article.php">
    <h2>Compose Article</h2>
    <p>
        Title: <br />
        <input type="text" class="title" name="title" maxlength="255" value="<?php echo htmlspecialchars($title); ?>" />
    </p>
    <p>
        Body: <br />
        <textarea class="body" name="body" id="body" rows="10" cols="60"><?php echo htmlspecialchars($body); ?></textarea>
    </p>
    <p>
        <?php
            echo '<input type="hidden" name="article" value="' .
            $article . "\" />\n";
            if ($_SESSION['access_lvl'] < 2) {
                echo '<input type="hidden" name="author_id" value="' .
                $author_id . "\" />\n";
            }
            if ($article) {
                echo '<input type="submit" class="submit" name="action" ' .
                "value=\"Save Changes\" />";
            } else {
                echo '<input type="submit" class="submit" name="action" ' .
                "value=\"Submit New Article\" />";
            }
        ?>
    </p>
</form>

1 个答案:

答案 0 :(得分:1)

我个人认为你不需要PHP库。只需添加

<div contenteditable="true">
    Editable text
</div>

作为您的可编辑,然后只是让它运行的脚本:

<script type="text/javascript" src="/path/to/ckeditor/ckeditor.js"></script>

也就是说,您可以将textarea的id传递给PHP库。为避免与body标记混淆,请将此控件的idname重命名为editable_content或类似名称。如上所述,请尝试使用div