用php把数据库查询出来,放在fck编辑器里的模板内容文件里就OK了
include("fckeditor.php");
$sBasePath="editor/";//编辑器所在目录
$oFCKeditor=new FCKeditor('content'); // 创建一个fckeditor对象
$oFCKeditor->BasePath=$BasePath;
$oFCKeditor->Height='700px';
$oFCKeditor->Width='80%';
$oFCKeditor->Value=$arr['zp_content']; // 设定表单初始值 在这里显示数据库内容
$oFCKeditor->Create(); // 调用方法