最近需要一个 online HTML text editor,搜了一下,找到了 FCKeditor,看了一下,原来 Intervals 用的就是他,一看他们的用户名单,不得了,Adobe、Oracle等等等等都在列啊。
功能不必多说了,肯定是超强了,支持 JAVA、PHP、ASP.NET、ASP等等,在PHP下使用也很简单:
1、下载解压到网站的一目录,如:/fckeditor/;
2、写以下的 PHP 代码:
<?php
include(‘/fckeditor/fckeditor.php’);
$editor = new FCKeditor (‘news_content’); // 参数为 FORM 要 POST 的 Name;
$editor->BasePath = ‘/fckeditor/’; // FCKeditor 的安装路径;
$editor->Value = ”; // 缺省值;
$editor->Width = ‘100%’;
$editor->Height = ‘500’;
$editor->Create();
?>
如此简单!