<?php
        //建立fckeditor对象
        $oFCKeditor = new FCKeditor('Content');
        $oFCKeditor->BasePath = '../fckeditor/';
$oFCKeditor->Toolbar ='Default';
        $oFCKeditor->ToolbarSet = 'Info';
        $oFCKeditor->Width = '600' ;
        $oFCKeditor->Height = '400' ;
        $oFCKeditor->Value =$row["content"];
        $oFCKeditor->Create() ;
      ?>fck编辑器,,表单提交后如何获取FCK的内容..