fckeditor在php中的用法(添加于修改写成了函数)
更新时间:2009年12月15日 12:32:35 作者:
这里就不多说了,看代码。后面有说明。
复制代码 代码如下:
function CreateEditor ($act,$id,$url) { #调用FCKeditor并补完发表文章的表单,act=0:发表新文章 =1修改文章
include("editor/fckeditor.php"); //FCKeditor已存放到此目录下
$oEditor = new FCKeditor ("content"); //对应于一个input控件,相当于是一个name=content的textarea
$oEditor -> BasePath = 'editor/'; //配置基本信息
$oEditor -> Width = "100%";
$oEditor -> Height = "400";
if( $act ) {
$query = "SELECT title,content FROM article WHERE id=$id";
$result = mysql_query($query);
$fillin = mysql_fetch_array($result);
}
echo '<form action="'.$url.'" method="post">';
echo '<p>Title: <input type="text" class="text" class="text" name="title" size="100" value="'.$fillin['title'].'"></p><p>';
if( $act ) $oEditor -> Value = $fillin['content']; //若是修改文章,则将原文章内容放进编辑器
$oEditor -> Create(); //创建编辑器
echo '</p>';
echo '<p><input type="submit" class="button" value="P o s t"></p>';
echo '</form>';
}
如果是编辑页面:(直接把下面的放在文本区域就可以了)
复制代码 代码如下:
<?php
include("../../../FCKeditor/fckeditor.php"); //FCKeditor已存放到此目录下
$oEditor = new FCKeditor ("content"); //对应于一个input控件,相当于是一个name=content的textarea
$oEditor -> BasePath = '../../../FCKeditor/'; //配置基本信息
$oEditor -> Width = "100%";
$oEditor -> Height = "400";
$oEditor -> Value = $list['content']; //若是修改文章,则将原文章内容放进编辑器
$oEditor -> Create(); //创建编辑器
?>
您可能感兴趣的文章:
相关文章
Ueditor和CKeditor 两款编辑器的使用与配置方法
这篇文章主要介绍了Ueditor和CKeditor 两款编辑器的使用与配置方法,需要的朋友可以参考下2017-03-03
dedecms ckeditor编辑器添加链接默认新窗口打开的修改方法
最近使用了dedecms ckeditor编辑器,发现每次都是当前页打开,对用户浏览造成一定的麻烦,所以特改成新窗口打开,这里脚本之家小编为大家分享下2014-07-07
asp.net 为FCKeditor开发代码高亮插件实现代码
昨天已经将BlogEngine的可视化编辑器换成了FCKeditor,作为一个程序员,在博客中插入代码是很重要的一块。网上现有的都是修改FCKeditor的fckeditorcode_gecko.js和fckeditorcode_ie.js以达到InsertCode的目的。这个方法非常麻烦,当要使用FCKeditor新版本时都要重新修改这两个文件,非常影响我们的效率。2008-08-08
CKEditor/FCKEditor 使用 CKeditor 3.0.1 快速使用教程(含插入图片)
一般来说,我们在编辑内容时,先是读入到 textarea,再将 textarea 的内容赋给编辑器。2010-03-03
百度编辑器从Json对象中取值,完成初次渲染,在编辑器内画表格
在百度编辑器中,如何完成从服务器取值,来渲染出表格?这里需要先console.log(editor);在官方API中已经告诉我们写入的方法是setContent(),这里只要能传入我们最终拼好的的字符串,即可以在初始化中,绘制出我们想要的任何节点2012-06-06
新浪博客在线编辑器傻瓜调用版(2007.11.1第四次修正)提供下载了
新浪博客在线编辑器傻瓜调用版(2007.11.1第四次修正)提供下载了...2007-11-11


最新评论