Fckeditor使用方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Fckeditor使用方法相关的知识,希望对你有一定的参考价值。

下载地址 http://ckeditor.com/download

<?php
require(‘../fckeditor/fckeditor.php‘);
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>用PHP调用FCKeditor</title>
</head>
<body>
    <form method="POST" name="example" action="">
<?php
$oFCKeditor = new FCKeditor(‘FCKeditor1‘);    //创建FCKeditor实例 可创建多个实例
$oFCKeditor->BasePath = ‘../fckeditor/‘;    //设置FCKeditor目录地址

$oFCKeditor->Width=‘100%‘;
$oFCKeditor->Height=‘300px‘;
$oFCKeditor->Create();    //创建编辑器
?>
        <input type="submit" name="ok" value="提交" />
    </form>
<?php
echo ‘<pre>‘;
print_r($_POST);
?>
</body>
</html>

技术分享

以上是关于Fckeditor使用方法的主要内容,如果未能解决你的问题,请参考以下文章

CKEditor/FCKEditor的使用

asp如何将内容绑定在fckeditor编辑框中

文字编辑器FCKeditor 简介以及基本配置和使用方法

FCKEditor编辑器添加中文字体的方法

如何在 FCKeditor 中*动态*更改图像上传路径

Fckeditor使用方法