FCKeditor2.3 For PHP 详细整理的使用参考
参考一
首先到:去下载fckeditor
放到网站根目录。
精简说明:
删除所有"_"开头的文件和文件夹
删除语言包中除中文和英文以外的语言
删除skin目录下除默认皮肤以外的文件夹
filemanager/browser/default/connectors/目录下除php以外的文件
filemanager/upload/目录下除php以外的文件
表情文件夹及表情按钮
配置说明:
fckeditor.php :
basepath为默认fckeditor的目录,也可以在调用的时候指定.
fckconfig.js :
autodetectlanguage 建议关闭,在defaultlanguage中手动指定默认语言:zh-cn.
toolbarsets fckeditor的功能按纽,可自行定制.
_filebrowserlanguage,_quickuploadlanguage 指定文件浏览及上传使用的语言,我指定php.
editor\filemanager\browser\default\connectors\php\config.php
editor\filemanager\upload\php\config.php
$config['enabled'] 是否允许上传
$config['userfilespath'] 默认上传路径,可以更改但必须在相应的目录下建这个名称的目录。
配置 fckeditor的toolbar功能按钮可以很容易地进行定制,你可以依据你的需要在fckeditor的配置文件fckeditor\fck_config.js中进行定制,增加类似config.toolbarsets["name"] = [ ][ ]; (这里中括号里面的内容自定)使用时只需把$ofckeditor->toolbarset = 'default' 改为$ofckeditor->toolbarset = 'name' 即可。
工具栏功能说明:
功能名称 |
含义 |
功能名称 |
含义 |
editsource |
显示html源代码 |
strikethrough |
删除线 |
save |
保存 |
subscript |
下标 |
newpage |
新建空白页面 |
superscript |
上标 |
preview |
预览 |
justifyleft |
左对齐 |
cut |
剪切 |
justifycenter |
居中对齐 |
copy |
复制 |
justifyright |
右对齐 |
paste |
粘贴 |
justifyfull |
两端对齐 |
pastetext |
纯文本粘贴 |
insertorderedlist |
自动编号 |
pasteword |
来自word的粘贴 |
insertunorderedlist |
项目符号 |
print |
打印 |
outdent |
减少缩进 |
spellcheck |
拼写检查 |
indent |
增加缩进 |
find |
查找 |
showtableborders |
显示表格线 |
replace |
替换 |
showdetails |
显示明细 |
undo |
撤销 |
form |
添加form动作 |
redo |
还原 |
checkbox |
复选框 |
selectall |
全选 |
radio |
单选按钮 |
removeformat |
去除格式 |
input |
单行文本框 |
link |
插入/编辑 链接 |
textarea |
滚动文本框 |
removelink |
去除连接 |
select |
下拉菜单 |
anchor |
锚点 |
button |
按钮 |
image |
插入/编辑 图片 |
imagebutton |
图片按钮 |
table |
插入/编辑 表格 |
hidden |
隐藏 |
rule |
插入水平线 |
zoom |
显示比例 |
specialchar |
插入特殊字符 |
fontstyleadv |
系统字体 |
universalkey |
软键盘 |
fontstyle |
字体样式 |
smiley |
插入表情符号 |
fontformat |
字体格式 |
about |
关于 |
font |
字体 |
bold |
粗体 |
fontsize |
字体大小 |
italic |
斜体 |
textcolor |
文字颜色 |
underline |
下划线 |
bgcolor |
背景色 |
使用方法:
test.php文件
<form action="./action.php" method="post" target="_blank">
<?php
include_once("fckeditor/fckeditor.php");
$sbasepath = 'http://127.0.0.1/fckeditor/';
$ofckeditor = new fckeditor('input');
$ofckeditor->basepath = $sbasepath ;
$ofckeditor->width = '100%';
$ofckeditor->height = '100px';
$ofckeditor->toolbarset='default';
$ofckeditor->value = 'hello world!';
echo $ofckeditor->createhtml();
?>
<input type="submit" value="确定">
</form>
action.php文件
<?php
if ( isset( $_post ) )
$postarray = &$_post ;
foreach ( $postarray as $sform => $value )
{
$postedvalue = htmlspecialchars( stripslashes( $value ) ) ;
echo $postedvalue;
//另外的处理语句。
?>
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
参考二
php中使用fckeditor2.3.2配置
fckeditor2.3.2在线编辑器非常好用,完全支持文件上传。今天baidu了一下午终于搞定了。 下载fckeditor2.3.2,解压至fckeditor。
1首先删除不必要的文件节省空间。凡是以_开头的文件如_samples,_testcases和一些用不到的.asp、.jsp、.cfm文件统统干掉。
2修改fckconfig.js
fckconfig.autodetectlanguage = true ;//是否自动检测语言
fckconfig.defaultlanguage = 'zh-cn' ;//设置语言
fckconfig.skinpath = fckconfig.basepath + 'skins/default/' ;//设置皮肤
fckconfig.tabspaces = 1 ;//tab是否有效
fckconfig.toolbarstartexpanded = true ;//编辑工具条是否出现,等点“展开工具栏”时才出现
fckconfig.fontnames = '宋体;黑体;隶书;楷体_gb2312;arial;comic sans ms;courier new;tahoma;times new roman;verdana' ;//添加中文字体
修改fckeditor\editor\css\fck_editorarea.css
设置默认字体及大小
body, td
{
font-family: arial, verdana, sans-serif;
font-size: 14px;
}
3关于文件上传的设置
修改fckconfig.js
var _filebrowserlanguage = 'php' ; // asp | aspx | cfm | lasso | perl | php
var _quickuploadlanguage = 'php' ; // asp | aspx | cfm | lasso | php
修改fckeditor\editor\filemanager\browser\default\connectors\php
$config['enabled'] = true ;
$config['userfilespath'] = '/userfiles/' ;//设置上传的文件夹,可自己指定
修改fckeditor\editor\filemanager\upload\php
$config['enabled'] = true ;
$config['usefiletype'] = true ;
$config['userfilespath'] = '/userfiles/' ;//同上要一样
4引入在线编辑器时只需
<?php
include("fckeditor/fckeditor.php") ;
$ofckeditor = new fckeditor('fckeditor1') ;//实例化
$ofckeditor->basepath = 'fckeditor/';//这个路径一定要和上面那个引入路径一致,否则会报错:找不到fckeditor.html页面
//$ofckeditor->value = '' ;
$ofckeditor->width = '100%' ;
$ofckeditor->height = '300' ;
$ofckeditor->create() ;
?>
js用alert( fckeditorapi.getinstance('fckeditor1').getxhtml( true ))得到fckeditor1的值;
php用$_post['fckeditor1']得到fckeditor1的值。
参考三
fckeditor是sourceforge.net上面的一个开源项目,主要是实现在线网页编辑器的功能,官方网站为 ,在服务器端支持asp.net、asp、clodfusion、php、java等语言,并且支持ie 5+、mozilla 、netscape等主流浏览器。目前最新版本为2.0 beta 2,但是目前2.0 beta版还不支持php,所以这里我选择使用了1.6版本。
首先我们先到 下载fckeditor_1.6.zip,并将其解压缩到你的网站子目录里面,并将文件夹名改为fckeditor。进入到fckeditor/目录下,打开_test/目录,里面含有各种编程语言调用fckeditor的方法,其中与php有关的文件有2个文件:
test.php //提交数据页面
testsubmit.php //显示数据页面
大家可以看一下,了解fckeditord的调用方法,下面是我简写了一个test程序:
<?php
if($_post["add"]){
$content=$_post['editordefault'];
echo $content;
//变量$content就是我们在fckeditord里面编辑的内容,这里可以将其保存到数据库里面
}
?>
<html>
<head>
<?php
//引入在线编辑器
include("../fckeditor/fckeditor.php") ;
?>
</head>
<body>
<br>
<form action="<?php echo $_server['php_self']; ?>" method="post" language="javascript">
<?php
$ofckeditor = new fckeditor ;
// fckeditor所在目录,[b:91beb51adf]这个路径一定要和上面那个引入路径一致,否则会报错:找不到fckeditor.html页面[/b:91beb51adf]
$ofckeditor->basepath = '../fckeditor/' ;
// 将fckeditor实例化
$ofckeditor->createfckeditor( 'editordefault', '100%', 300 ) ;
?>
<input type="submit" name="add" value="提交">
</form>
</body>
</html>
从上面的例子中我们可以看到要使用fckeditor,首先要执行
include("../fckeditor/fckeditor.php") ;语句来引用fckeditor。然后执行
$ofckeditor = new fckeditor ;
$ofckeditor->basepath = '../fckeditor/' ;
$ofckeditor->createfckeditor( 'editordefault', '100%', 300 ) ;
来实例化fckeditor,如果是编辑页面则再加入一行:
//$content可以是从数据库中读取出来的数据
$ofckeditor->value = $content ;
默认情况下,上传图片功能仅对应于asp方式,要想实现在php下上传文件,还得对fckeditor的配置文件进行修改。打开/ fckeditor/js/fck_config.js(这是fckeditor的主配置文件),定位到文件的最下面那段被//注释掉的内容,将
//##
//## image browsing
//##
config.imagebrowser = true ;
// custom page url
config.imagebrowserurl = config.basepath + "filemanager/browse/sample_html/browse.html" ;
//config.imagebrowserurl = config.basepath + "filemanager/browse/sample_php/browse.php" ;
//config.imagebrowserurl = config.basepath + "filemanager/browse/sample_jsp/browse.jsp?type=img" ;
//config.imagebrowserurl = config.basepath + "filemanager/browse/sample_asp/browse.asp" ;
//##
//## image upload
//##
config.imageupload = true ;
// page that effectivelly upload the image.
config.imageuploadurl = config.basepath + "filemanager/upload/asp/upload.asp" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/aspx/upload.aspx" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/cfm/upload.cfm" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/php/upload.php" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/jsp/upload.jsp" ;
改为
//##
//## image browsing
//##
config.imagebrowser = true ;
// custom page url config.
imagebrowserurl = "filemanager/browse/sample_html/browse.html" ;
config.imagebrowserurl = config.basepath + "filemanager/browse/sample_php/browse.php" ;
//##
//## image upload
//##
config.imageupload = true ;
// page that effectivelly upload the image.
config.imageuploadurl = config.basepath + "filemanager/upload/php/upload.php" ;
最后再修改2个文件:
/fckeditor/filemanager/upload/php/upload.php
第22行
$upload_base_url = '/userimages/';
/fckeditor/filemanager/browse/sample_php/browse.php
第20行
$images_base_url = '/fckeditor/userimages/';
这两处定义了图片上传到哪个目录,可以自行定义,不过一定要确保该目录存在,不然上传图片时会报错。
然后我们把fckeditor目录下的用不到的.asp、.jsp、. cfm文件和_test、_ aspnet、_developers、_docs、_jsp目录都删掉以节省空间。好啦,fckeditor的基本使用方法就讲到这里,大家感兴趣的话可以到我的网站来看看效果: 。
补充:
在fckeditor官方的网站注明fckeditor目前支持3种浏览器:ie5+,mozilla and netscape。但在实验中发现使用ie5.0是不支持图片上传功能,只有将ie升级到5.5或者6.0才能支持图片上传功能。而对于刚出的mozilla firefox 1.0 rc1以及mozilla1.6(linux环境),则完全无法使用fckeditor。
以下是使用ie5.0和ie6.0时的截图。
fckeditor截图
使用ie5.0时,看不到“上传”提示
satand 回复于:2004-10-31 17:28:06
粗读了js文件,可扩展性还好但是功能有限
放弃,作为纪念品收藏
参考四
在线编辑器fckeditor在php中的使用方法
在线编辑器fckeditor在php中的使用方法 (转帖)
原作者:tjyihui 出处: phpx.com
fckeditor是sourceforge.net上面的一个开源项目,主要是实现在线网页编辑器的功能,官方网站为 ,在服务器端支持asp.net、asp、clodfusion、php、java等语言,并且支持ie 5+、mozilla 、netscape等主流浏览器。目前最新版本为2.0 beta 2,但是目前2.0 beta版还不支持php,所以这里我选择使用了1.6版本。下面是fckeditor的一个截图:
首先我们先到 下载fckeditor_1.6.zip,并将其解压缩到你的网站子目录里面,并将文件夹名改为fckeditor。进入到fckeditor/目录下,打开_test/目录,里面含有各种编程语言调用fckeditor的方法,其中与php有关的文件有2个文件:
test.php //提交数据页面
testsubmit.php //显示数据页面
大家可以看一下,了解fckeditord的调用方法,下面是我简写了一个test程序:
<?php
if($_post["add"]){
$content=$_post['editordefault'];
echo $content;
//变量$content就是我们在fckeditord里面编辑的内容,这里可以将其保存到数据库里面
}
?>
<html>
<head>
<?php
//引入在线编辑器
include("../fckeditor/fckeditor.php") ;
?>
</head>
<body>
<br>
<form action="<?php echo $_server['php_self']; ?>" method="post" language="javascript">
<?php
$ofckeditor = new fckeditor ;
// fckeditor所在目录
$ofckeditor->basepath = '../fckeditor/' ;
// 将fckeditor实例化
$ofckeditor->createfckeditor( 'editordefault', '100%', 300 ) ;
?>
<input type="submit" name="add" value="提交">
</form>
</body>
</html>
从上面的例子中我们可以看到要使用fckeditor,首先要执行
include("../fckeditor/fckeditor.php") ;语句来引用fckeditor。然后执行
$ofckeditor = new fckeditor ;
$ofckeditor->basepath = '../fckeditor/' ;
$ofckeditor->createfckeditor( 'editordefault', '100%', 300 ) ;
来实例化fckeditor,如果是编辑页面则再加入一行:
//$content可以是从数据库中读取出来的数据
$ofckeditor->value = $content ;
默认情况下,上传图片功能仅对应于asp方式,要想实现在php下上传文件,还得对fckeditor的配置文件进行修改。打开/ fckeditor/js/fck_config.js(这是fckeditor的主配置文件),定位到文件的最下面那段被//注释掉的内容,将
//##
//## image browsing
//##
config.imagebrowser = true ;
// custom page url
config.imagebrowserurl = config.basepath + "filemanager/browse/sample_html/browse.html" ;
//config.imagebrowserurl = config.basepath + "filemanager/browse/sample_php/browse.php" ;
//config.imagebrowserurl = config.basepath + "filemanager/browse/sample_jsp/browse.jsp?type=img" ;
//config.imagebrowserurl = config.basepath + "filemanager/browse/sample_asp/browse.asp" ;
//##
//## image upload
//##
config.imageupload = true ;
// page that effectivelly upload the image.
config.imageuploadurl = config.basepath + "filemanager/upload/asp/upload.asp" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/aspx/upload.aspx" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/cfm/upload.cfm" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/php/upload.php" ;
//config.imageuploadurl = config.basepath + "filemanager/upload/jsp/upload.jsp" ;
改为
//##
//## image browsing
//##
config.imagebrowser = true ;
// custom page url config.
imagebrowserurl = "filemanager/browse/sample_html/browse.html" ;
config.imagebrowserurl = config.basepath + "filemanager/browse/sample_php/browse.php" ;
//##
//## image upload
//##
config.imageupload = true ;
// page that effectivelly upload the image.
config.imageuploadurl = config.basepath + "filemanager/upload/php/upload.php" ;
最后再修改2个文件:
/fckeditor/filemanager/upload/php/upload.php
第22行
$upload_base_url = '/userimages/';
/fckeditor/filemanager/browse/sample_php/browse.php
第20行
$images_base_url = '/fckeditor/userimages/';
这两处定义了图片上传到哪个目录,可以自行定义,不过一定要确保该目录存在,不然上传图片时会报错。
然后我们把fckeditor目录下的用不到的.asp、.jsp、. cfm文件和_test、_ aspnet、_developers、_docs、_jsp目录都删掉以节省空间。好啦,fckeditor的基本使用方法就讲到这里,大家感兴趣的话可以到我的网站来看看效果: 。
参考五
fckeditor是目前互联网上最好的在线编辑器,功能强大,支持ie 5.5+ (windows), firefox 1.0+, mozilla 1.3+ and netscape 7.1+.浏览器,无平台限制,能够在windows, mac and linux上正常运行,可以和多种web语言融合,如asp.net 、asp、coldfusion、php、java、 active-foxpro、lasso、perl、python,还有多语言支持,提供50多种语言包,是一种开源软件。最新的版本是2.4.3,下载地址:
fckeditor作为一种支持多平台,多语言的编辑器,下载之后就可以直接在程序或者网页中使用。有时由于系统并不需要如此之多的功能,所以还是需要进行一些简单的修改,配置更加适合自己的网站的个性编辑器。
一、优化fckeditor文件夹和文件:
下载fckeditor并解压之后,会产生_samples和editor两个文件夹和几个文件,全部删除以_开头的文件夹和文件,因为这些都是fckeditor的一些例子而已,可以学习一下,但上传到网站服务器上就大可不必了,删除。在根目录下,还有几个fckeditor.asp,fckeditor.php,fckeditor.js......等其它文件,这个就看你的网站服务器和网站需要什么程序语言,有php,asp,perl,.net等,我选择的是脚本配置文件fckeditor.js,还有三个文件fckconfig.js、fckstyles.xml、fcktemplates.xml是必需的文件,其它的可以全部删除。
打开editor文件夹,进入lang文件夹,这里面是fckeditor的语言包来的,一般国内选择en.js和zh.js和zh-cn.js文件就可以了,加上必需的文件fcklanguagemanager.js(此文件是2.4版本以下必需的),其它的文件可以完全删除。
之后打开editor/filemanager文件夹,如果不要求在上传图片或者文件的时候显示服务器上的内容,可以选择删除filemanager文件夹下的brower文件夹。然后进入upload文件夹,里面是各种程序语言的上传文件,选择你需要的那个程序语言文件夹,其它的删除。
进入editor/plugins文件夹,如果你不需要这些额外的fckeditor插件的话,把里面的文件夹全部删除。
进入editor/skins文件夹,里面是编辑器的皮肤文件,default文件是默认的灰色面板的编辑器,office2003和silver是另外加载的,看哪个好看就选择哪个,然后其它的删除。
另外,editor/dialog文件夹里是一些编辑器的对话框,如果选择基本的一些功能的话,可以相应的选择其文件,把其它的删除也是可以的。
到这里,编辑器的文件夹优化基本ok了,精简了许多,更加方便了服务器的上传和使用。
二、fckeditor的基本配置修改:
fckconfig.js是fckeditor编辑器的配置文件,不涉及到工具按钮的增加的话修改这里面的配置完全可以了。
下面列举的是fckconfig.js里的配置选项:
autodetectlanguage=true/false 自动检测语言
basehref="" _fcksavedurl="""" 相对链接的基地址
contentlangdirection="ltr/rtl" 默认文字方向
contextmenu=字符串数组,右键菜单的内容
customconfigurationspath="" 自定义配置文件路径和名称
debug=true/false 是否开启调试功能,这样,当调用fckdebug.output()时,会在调试窗中输出内容
defaultlanguage="" 缺省语言
editorareacss="" 编辑区的样式表文件
enablesourcexhtml=true/false 为true时,当由可视化界面切换到代码页时,把html处理成xhtml
enablexhtml=true/false 是否允许使用xhtml取代html
fillemptyblocks=true/false 使用这个功能,可以将空的块级元素用空格来替代
fontcolors="" 设置显示颜色拾取器时文字颜色列表
fontformats="" 设置显示在文字格式列表中的命名
fontnames="" 字体列表中的字体名
fontsizes="" 字体大小中的字号列表
forcepasteasplaintext=true/false 强制粘贴为纯文本
forcesimpleampersand=true/false 是否不把&符号转换为xml实体
formatindentator="" 当在源码格式下缩进代码使用的字符
formatoutput=true/false 当输出内容时是否自动格式化代码
formatsource=true/false 在切换到代码视图时是否自动格式化代码
fullpage=true/false 是否允许编辑整个html文件,还是仅允许编辑body间的内容
geckousespan=true/false 是否允许span标记代替b,i,u标记
iespelldownloadurl=""下载拼写检查器的网址
imagebrowser=true/false 是否允许浏览服务器功能
imagebrowserurl="" 浏览服务器时运行的url
imagebrowserwindowheight="" 图像浏览器窗口高度
imagebrowserwindowwidth="" 图像浏览器窗口宽度
linkbrowser=true/false 是否允许在插入链接时浏览服务器
linkbrowserurl="" 插入链接时浏览服务器的url
linkbrowserwindowheight=""链接目标浏览器窗口高度
linkbrowserwindowwidth=""链接目标浏览器窗口宽度
plugins=object 注册插件
pluginspath="" 插件文件夹
showborders=true/false 合并边框
skinpath="" 皮肤文件夹位置
smileycolumns=12 图符窗列数
smileyimages=字符数组 图符窗中图片文件名数组
smileypath="" 图符文件夹路径
smileywindowheight 图符窗口高度
smileywindowwidth 图符窗口宽度
spellchecker="iespell/spellerpages" 设置拼写检查器
startupfocus=true/false 开启时focus到编辑器
stylesxmlpath="" 设置定义css样式列表的xml文件的位置
tabspaces=4 tab键产生的空格字符数
toolbarcancollapse=true/false 是否允许展开/折叠工具栏
toolbarsets=object 允许使用toolbar集合
toolbarstartexpanded=true/false 开启是toolbar是否展开
usebroncarriagereturn=true/false 当回车时是产生br标记还是p或者div标记
下面详细的说明一下一些常用的配置选项:
fckconfig.defaultlanguage = 'en' ; //选择编辑器的语言,editor/lang/文件夹下面的有相应的语言脚本文件。
fckconfig.toolbarstartexpanded = true ;//载入编辑器的时候展开还是收缩工具按钮。
fckconfig.toolbarsets["default"] 和 fckconfig.toolbarsets["basic"]是载入的时候显示全部工具按钮还是部分基本按钮。可以在fckeditor.js或者fckeditor.asp/php等文件中设置。
fckconfig.contextmenu这个是编辑器的右键配置文件,可以自己增减对应按钮。
fckconfig.linkbrowser = false ;//浏览服务器上的文件,如果选择false不允许的话,接下去的几行可以相应的注释掉。后面的fckconfig.imagebrowser = false ;fckconfig.flashbrowser = false ;也是如此。如果选择允许的话,将相应的程序语言部分的注释去掉。
fckconfig.linkupload = true ;fckconfig.imageupload = true ;fckconfig.flashupload = true ;这三个配置选项是设置文件上传的,如果不允许用户上传文件,则把true修改为false即可。如果允许,请在相应的程序语言里选择,即把对应的注释行去掉即可。
修改完毕之后再打开相应的程序语言的fckeditor文件继续。
三、修改编辑器载入时的配置:
打开fckeditor.js或者fckeditor.asp/php/pl等文件,这些文件的配置情况都是差不多的。这里拿fckeditor.js说明。
width:编辑器宽度。
height:编辑器高度。
toolbarset:编辑器工具按钮:default或者basic。
basepath:编辑器所在目录,建议使用根目录形式。
其它的就可以设置默认的就可以了。
四、使用fckeditor编辑器:
1、asp程序语言载入编辑器:
包含文件fckeditor.asp文件,然后在相应的地方加入下面的代码:
<%
dim ofckeditor
set ofckeditor = new fckeditor
ofckeditor.basepath = "/"
ofckeditor.toolbarset = "default"
ofckeditor.width = "100%"
ofckeditor.height = "400"
ofckeditor.value = rs("content")
ofckeditor.create "content"
%>
2、js程序语言载入编辑器:
引用脚本fckeditor.js文件,在相应的地方加入下面的代码:
<script type="text/javascript">
var ofckeditor = new fckeditor( 'content' ) ;
ofckeditor.basepath = '/' ;
ofckeditor.toolbarset = 'basic' ;
ofckeditor.width = '100%' ;
ofckeditor.height = '400' ;
ofckeditor.value = '' ;
ofckeditor.create() ;
</script>
js语言版本的还有一种替换文本框加快页面显示的文件,在这里我选择的是点击编辑框才出现编辑器,引用fckeditor.js文件,加入如下代码:
<script type="text/javascript">
<!--
function showeditor() {
var ofckeditor = new fckeditor( 'content' ) ;
ofckeditor.basepath = "../fckeditor/" ;
ofckeditor.value = '' ;
ofckeditor.replacetextarea() ;
}
//-->
</script><div id="precontent"><textarea id="content" onclick="javascript:showeditor();"></textarea></div>
3、php程序语言载入编辑器:
包含fckeditor.php文件,在相应的地方加入下面的代码:
<?php
$ofckeditor = new fckeditor('content') ;
$ofckeditor->basepath = "../fckeditor/" ;
$ofckeditor->value = '' ;
$ofckeditor->create() ;
?>
下一篇: ASX文件 终极教程第1/2页