您现在的位置是:网站首页> 编程资料编程资料
fckeditor在php中的用法(添加于修改写成了函数)_网页编辑器_
2023-05-25
266人已围观
简介 fckeditor在php中的用法(添加于修改写成了函数)_网页编辑器_
复制代码 代码如下:
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 '';
}
如果是编辑页面:(直接把下面的放在文本区域就可以了)
复制代码 代码如下:
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(); //创建编辑器
?>
您可能感兴趣的文章:
相关内容
- php下FCKeditor2.6.5网页编辑器的使用方法_网页编辑器_
- ASP.NET中FCKEDITOR在线编辑器的用法_网页编辑器_
- ASP下使用FCKeditor在线编辑器的方法_网页编辑器_
- ASP FCKeditor在线编辑器使用方法_网页编辑器_
- fckediter javascript事件函数代码_网页编辑器_
- FCKeditor提供了一个完整的JavaScript API_网页编辑器_
- 配置fckeditor 实现图片的上传_网页编辑器_
- FCKeditor 编辑器插入代码功能实现步骤_网页编辑器_
- xhEditor的异步载入实现代码_网页编辑器_
- eWebEditor 上传文件提示格式不正确的解决方法_网页编辑器_
