码迷,mamicode.com
首页 > 其他好文 > 详细

Fckeditor使用方法

时间:2016-01-23 12:45:23      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

下载地址 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使用方法

标签:

原文地址:http://www.cnblogs.com/weishang/p/5152938.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!